Skip to content

Commit

Permalink
fixup: try fix buildkite variable expansion in script
Browse files Browse the repository at this point in the history
  • Loading branch information
matzf committed May 14, 2024
1 parent a379642 commit 9361a24
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ steps:
timeout_in_minutes: 10
- wait
- label: "Package :debian: :openwrt:"
command:
- version=${SCION_VERSION:-$(tools/git-version)}
- make dist-deb BFLAGS="--file_name_version=${version}"
- make dist-openwrt BFLAGS="--file_name_version=${version}"
- cd installables;
- tar -chaf scion-deb-amd64.tar.gz *_${version}_amd64.deb
- tar -chaf scion-deb-arm64.tar.gz *_${version}_arm64.deb
- tar -chaf scion-deb-i386.tar.gz *_${version}_i386.deb
- tar -chaf scion-deb-armel.tar.gz *_${version}_armel.deb
- tar -chaf scion-openwrt-x86_64.tar.gz *_${version}_x86_64.ipk
command: |
version=${SCION_VERSION:-$(tools/git-version)}
make dist-deb BFLAGS="--file_name_version=$${version}"
make dist-openwrt BFLAGS="--file_name_version=$${version}"
cd installables;
tar -chaf scion-deb-amd64.tar.gz *_$${version}_amd64.deb
tar -chaf scion-deb-arm64.tar.gz *_$${version}_arm64.deb
tar -chaf scion-deb-i386.tar.gz *_$${version}_i386.deb
tar -chaf scion-deb-armel.tar.gz *_$${version}_armel.deb
tar -chaf scion-openwrt-x86_64.tar.gz *_$${version}_x86_64.ipk
artifact_paths:
- "installables/scion-*.tar.gz"
plugins:
Expand Down

0 comments on commit 9361a24

Please sign in to comment.