diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-10-27 18:56:46 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-10-27 18:56:46 +0000 |
| commit | aaa4e541ee1ce764eb58f848563bca0b8a330f72 (patch) | |
| tree | d7dff9106be7c55f3c50ee8a4b07a20ca0e98344 /.github/workflows | |
| parent | d89582c8e5171f9d9a5b3c0feedb9f7be114c90e (diff) | |
| download | rust-aaa4e541ee1ce764eb58f848563bca0b8a330f72.tar.gz rust-aaa4e541ee1ce764eb58f848563bca0b8a330f72.zip | |
Explicitly mark which targets to distribute cg_clif for in CI
This avoids needlessly building cg_clif for other targets and makes it easier for the dist code to determine if it should distribute cg_clif as component.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f91e6816ae4..ddeb489c647 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -193,8 +193,9 @@ jobs: os: ubuntu-20.04-8core-32gb env: {} - name: dist-aarch64-linux + env: + CODEGEN_BACKENDS: "llvm,cranelift" os: ubuntu-20.04-8core-32gb - env: {} - name: dist-android os: ubuntu-20.04-8core-32gb env: {} @@ -244,15 +245,18 @@ jobs: os: ubuntu-20.04-8core-32gb env: {} - name: dist-x86_64-linux + env: + CODEGEN_BACKENDS: "llvm,cranelift" os: ubuntu-20.04-16core-64gb - env: {} - name: dist-x86_64-linux-alt env: IMAGE: dist-x86_64-linux + CODEGEN_BACKENDS: "llvm,cranelift" os: ubuntu-20.04-16core-64gb - name: dist-x86_64-musl + env: + CODEGEN_BACKENDS: "llvm,cranelift" os: ubuntu-20.04-8core-32gb - env: {} - name: dist-x86_64-netbsd os: ubuntu-20.04-8core-32gb env: {} @@ -316,6 +320,7 @@ jobs: NO_DEBUG_ASSERTIONS: 1 NO_OVERFLOW_CHECKS: 1 DIST_REQUIRE_ALL_TOOLS: 1 + CODEGEN_BACKENDS: "llvm,cranelift" os: macos-13 - name: dist-apple-various env: @@ -554,8 +559,9 @@ jobs: matrix: include: - name: dist-x86_64-linux + env: + CODEGEN_BACKENDS: "llvm,cranelift" os: ubuntu-20.04-16core-64gb - env: {} timeout-minutes: 600 runs-on: "${{ matrix.os }}" steps: |
