diff options
| author | bors <bors@rust-lang.org> | 2022-08-01 14:17:53 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-08-01 14:17:53 +0000 |
| commit | 8e38833c3674c1be7d81c6069c62e6ed52b18b27 (patch) | |
| tree | 64502fa4a61f783cb344ef9b661d3ffaef4b9358 | |
| parent | 5edbdd127a59ed79bf9381a4005efb4e7bcb262b (diff) | |
| parent | c71f1e70a87bfbaab7095a297628ff78acfc14df (diff) | |
| download | rust-8e38833c3674c1be7d81c6069c62e6ed52b18b27.tar.gz rust-8e38833c3674c1be7d81c6069c62e6ed52b18b27.zip | |
Auto merge of #12920 - jonas-schievink:arm-release, r=jonas-schievink
feat: Publish extension for 32-bit ARM systems
| -rw-r--r-- | .github/workflows/release.yaml | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4e62f2cde27..ca8eb1309de 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,6 +18,7 @@ env: FETCH_DEPTH: 0 # pull in the tags for the version string MACOSX_DEPLOYMENT_TARGET: 10.15 CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc + CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER: arm-linux-gnueabihf-gcc jobs: dist: @@ -36,6 +37,9 @@ jobs: - os: ubuntu-18.04 target: aarch64-unknown-linux-gnu code-target: linux-arm64 + - os: ubuntu-18.04 + target: arm-unknown-linux-gnueabihf + code-target: linux-armhf - os: macos-11 target: x86_64-apple-darwin code-target: darwin-x64 @@ -67,13 +71,17 @@ jobs: node-version: 14.x - name: Update apt repositories - if: matrix.target == 'aarch64-unknown-linux-gnu' + if: matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'arm-unknown-linux-gnueabihf' run: sudo apt-get update - - name: Install target toolchain + - name: Install AArch64 target toolchain if: matrix.target == 'aarch64-unknown-linux-gnu' run: sudo apt-get install gcc-aarch64-linux-gnu + - name: Install ARM target toolchain + if: matrix.target == 'arm-unknown-linux-gnueabihf' + run: sudo apt-get install gcc-arm-linux-gnueabihf + - name: Dist run: cargo xtask dist --client-patch-version ${{ github.run_number }} @@ -206,6 +214,10 @@ jobs: path: dist - uses: actions/download-artifact@v1 with: + name: dist-arm-unknown-linux-gnueabihf + path: dist + - uses: actions/download-artifact@v1 + with: name: dist-x86_64-pc-windows-msvc path: dist - uses: actions/download-artifact@v1 |
