Skip to content

Commit 1dcfac9

Browse files
committed
Fix Ci script
- cargo-binutils expects `--` argument before tool arguments - There are no `post-*` branches in this repo - I forgot to remove this when I copied the CI script of blog_os.
1 parent c0eed73 commit 1dcfac9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ trigger:
1010
- trying
1111
# Build pull requests.
1212
- master
13-
# Build post braches
14-
- post-*
1513

1614
strategy:
1715
matrix:
@@ -100,7 +98,7 @@ steps:
10098
displayName: 'Build Bootloader'
10199
env: { KERNEL: "example-kernel/target/x86_64-example-kernel/debug/example-kernel" }
102100

103-
- script: cargo objcopy -I elf64-x86-64 -O binary --binary-architecture=i386:x86-64 target/x86_64-bootloader/release/bootloader target/x86_64-bootloader/release/bootloader.bin
101+
- script: cargo objcopy -- -I elf64-x86-64 -O binary --binary-architecture=i386:x86-64 target/x86_64-bootloader/release/bootloader target/x86_64-bootloader/release/bootloader.bin
104102
displayName: 'Convert Bootloader ELF to Binary'
105103

106104
- bash: |

0 commit comments

Comments
 (0)