| author | |
| committer | |
| log | 9649704a3c29d0135bdbf6c67a74bfa229dc4951 |
| tree | 2133cecdb1578a120a5b161cd5ff2a2538f06d7c |
| parent | 54cb88117df61c5cade881b3c3b8e0c2d6f21799 |
2 files changed, 12 insertions(+), 0 deletions(-)
.github/workflows/push.yml+6| ... | ... | @@ -31,13 +31,19 @@ jobs: |
| 31 | 31 | - run: ./build_release.sh x86_64-linux-musl |
| 32 | 32 | - run: ./build_release.sh x86_64-macos-none |
| 33 | 33 | - run: ./build_release.sh x86_64-windows-gnu |
| 34 | ||
| 34 | 35 | - run: ./build_release.sh aarch64-linux-musl |
| 35 | 36 | - run: ./build_release.sh aarch64-macos-none |
| 36 | 37 | - run: ./build_release.sh aarch64-windows-gnu |
| 38 | ||
| 37 | 39 | - run: ./build_release.sh riscv64-linux-musl |
| 40 | ||
| 38 | 41 | - run: ./build_release.sh powerpc64le-linux-musl |
| 42 | ||
| 39 | 43 | - run: ./build_release.sh mips64el-linux-muslabi64 |
| 44 | ||
| 40 | 45 | - run: ./build_release.sh s390x-linux-musl |
| 46 | ||
| 41 | 47 | - run: ./build_release.sh loongarch64-linux-musl |
| 42 | 48 | |
| 43 | 49 | # Test |
build_all_zig.sh+6| ... | ... | @@ -8,13 +8,19 @@ targets=" |
| 8 | 8 | x86_64-linux-musl |
| 9 | 9 | x86_64-macos-none |
| 10 | 10 | x86_64-windows-gnu |
| 11 | ||
| 11 | 12 | aarch64-linux-musl |
| 12 | 13 | aarch64-macos-none |
| 13 | 14 | aarch64-windows-gnu |
| 15 | ||
| 14 | 16 | riscv64-linux-musl |
| 17 | ||
| 15 | 18 | powerpc64le-linux-musl |
| 19 | ||
| 16 | 20 | mips64el-linux-muslabi64 |
| 21 | ||
| 17 | 22 | s390x-linux-musl |
| 23 | ||
| 18 | 24 | loongarch64-linux-musl |
| 19 | 25 | " |
| 20 | 26 |