File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1515 toolchains :
1616 strategy :
1717 matrix :
18- target : [aarch64-linux-musl, arm-linux-muleabifh , x86_64-linux-musl]
18+ target : [aarch64-linux-musl, arm-linux-musleabihf , x86_64-linux-musl]
1919 runs-on : ubuntu-22.04
2020 name : ${{ matrix.target }}
2121 steps :
3030 uses : svenstaro/upload-release-action@v1-release
3131 with :
3232 repo_token : ${{ secrets.GITHUB_TOKEN }}
33- file : " ${{ matrix.target }}.tar.gz"
33+ file : " ${{ matrix.target }}.tar.gz* "
3434 tag : ${{ github.ref }}
3535 overwrite : true
3636 file_glob : true
Original file line number Diff line number Diff line change @@ -33,6 +33,14 @@ arm-linux-musleabihf:
3333 docker build --tag ' rust-musl-cross' musl
3434 docker run --rm -v $(CURDIR ) :/mnt/workspace -w /mnt/workspace rust-musl-cross musl/build.sh arm-linux-musleabihf
3535
36+ aarch64-linux-musl :
37+ docker build --tag ' rust-musl-cross' musl
38+ docker run --rm -v $(CURDIR ) :/mnt/workspace -w /mnt/workspace rust-musl-cross musl/build.sh aarch64-linux-musl
39+
40+ x86_64-linux-musl :
41+ docker build --tag ' rust-musl-cross' musl
42+ docker run --rm -v $(CURDIR ) :/mnt/workspace -w /mnt/workspace rust-musl-cross musl/build.sh x86_64-linux-musl
43+
3644base : check-base
3745 $(CURDIR ) /base.bash $(NO_TTY_ARG )
3846
Original file line number Diff line number Diff line change @@ -16,3 +16,4 @@ export TARGET=$target
1616make -C /tmp/musl -j4
1717make -C /tmp/musl install
1818tar -C /tmp/musl -czf ${target} .tar.gz output/
19+ sha256sum ${target} .tar.gz > ${target} .tar.gz.sha256
You can’t perform that action at this time.
0 commit comments