summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_codegen_gcc/.github/workflows
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
commit9918693037dce8aa4bb6f08741b6812923486c18 (patch)
tree21d2b40bec7e6a7ea664acee056eb3d08e15a1cf /compiler/rustc_codegen_gcc/.github/workflows
parentReleasing progress-linux version 1.75.0+dfsg1-5~progress7.99u1. (diff)
downloadrustc-9918693037dce8aa4bb6f08741b6812923486c18.tar.xz
rustc-9918693037dce8aa4bb6f08741b6812923486c18.zip
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'compiler/rustc_codegen_gcc/.github/workflows')
-rw-r--r--compiler/rustc_codegen_gcc/.github/workflows/ci.yml9
-rw-r--r--compiler/rustc_codegen_gcc/.github/workflows/failures.yml5
-rw-r--r--compiler/rustc_codegen_gcc/.github/workflows/m68k.yml9
-rw-r--r--compiler/rustc_codegen_gcc/.github/workflows/release.yml9
-rw-r--r--compiler/rustc_codegen_gcc/.github/workflows/stdarch.yml12
5 files changed, 30 insertions, 14 deletions
diff --git a/compiler/rustc_codegen_gcc/.github/workflows/ci.yml b/compiler/rustc_codegen_gcc/.github/workflows/ci.yml
index 65e7a697a..308bc55ea 100644
--- a/compiler/rustc_codegen_gcc/.github/workflows/ci.yml
+++ b/compiler/rustc_codegen_gcc/.github/workflows/ci.yml
@@ -99,8 +99,10 @@ jobs:
- name: Build
run: |
./y.sh prepare --only-libcore
- ./y.sh build
- cargo test
+ # TODO: remove --features master when it is back to the default.
+ ./y.sh build --features master
+ # TODO: remove --features master when it is back to the default.
+ cargo test --features master
./clean_all.sh
- name: Prepare dependencies
@@ -121,7 +123,8 @@ jobs:
- name: Run tests
run: |
- ./test.sh --release --clean --build-sysroot ${{ matrix.commands }}
+ # TODO: remove --features master when it is back to the default.
+ ./test.sh --features master --release --clean --build-sysroot ${{ matrix.commands }}
duplicates:
runs-on: ubuntu-latest
diff --git a/compiler/rustc_codegen_gcc/.github/workflows/failures.yml b/compiler/rustc_codegen_gcc/.github/workflows/failures.yml
index 27864dcad..ae8de79b7 100644
--- a/compiler/rustc_codegen_gcc/.github/workflows/failures.yml
+++ b/compiler/rustc_codegen_gcc/.github/workflows/failures.yml
@@ -21,11 +21,14 @@ jobs:
libgccjit_version:
- gcc: "libgccjit.so"
artifacts_branch: "master"
+ # TODO: switch back to --no-default-features in the case of libgccjit 12 when the default is to enable
+ # master again.
+ extra: "--features master"
- gcc: "libgccjit_without_int128.so"
artifacts_branch: "master-without-128bit-integers"
+ extra: "--features master"
- gcc: "libgccjit12.so"
artifacts_branch: "gcc12"
- extra: "--no-default-features"
# FIXME(antoyo): we need to set GCC_EXEC_PREFIX so that the linker can find the linker plugin.
# Not sure why it's not found otherwise.
env_extra: "TEST_FLAGS='-Cpanic=abort -Zpanic-abort-tests' GCC_EXEC_PREFIX=/usr/lib/gcc/"
diff --git a/compiler/rustc_codegen_gcc/.github/workflows/m68k.yml b/compiler/rustc_codegen_gcc/.github/workflows/m68k.yml
index 55ee0a212..4d9d7e23d 100644
--- a/compiler/rustc_codegen_gcc/.github/workflows/m68k.yml
+++ b/compiler/rustc_codegen_gcc/.github/workflows/m68k.yml
@@ -114,8 +114,10 @@ jobs:
- name: Build
run: |
./y.sh prepare --only-libcore --cross
- ./y.sh build --target-triple m68k-unknown-linux-gnu
- CG_GCC_TEST_TARGET=m68k-unknown-linux-gnu cargo test
+ # TODO: remove --features master when it is back to the default.
+ ./y.sh build --target-triple m68k-unknown-linux-gnu --features master
+ # TODO: remove --features master when it is back to the default.
+ CG_GCC_TEST_TARGET=m68k-unknown-linux-gnu cargo test --features master
./clean_all.sh
- name: Prepare dependencies
@@ -136,4 +138,5 @@ jobs:
- name: Run tests
run: |
- ./test.sh --release --clean --build-sysroot ${{ matrix.commands }}
+ # TODO: remove --features master when it is back to the default.
+ ./test.sh --release --features master --clean --build-sysroot ${{ matrix.commands }}
diff --git a/compiler/rustc_codegen_gcc/.github/workflows/release.yml b/compiler/rustc_codegen_gcc/.github/workflows/release.yml
index ae1134177..43b90fcec 100644
--- a/compiler/rustc_codegen_gcc/.github/workflows/release.yml
+++ b/compiler/rustc_codegen_gcc/.github/workflows/release.yml
@@ -78,8 +78,10 @@ jobs:
- name: Build
run: |
./y.sh prepare --only-libcore
- EMBED_LTO_BITCODE=1 ./y.sh build --release --release-sysroot
- cargo test
+ # TODO: remove --features master when it is back to the default.
+ EMBED_LTO_BITCODE=1 ./y.sh build --release --release-sysroot --features master
+ # TODO: remove --features master when it is back to the default.
+ cargo test --features master
./clean_all.sh
- name: Prepare dependencies
@@ -102,4 +104,5 @@ jobs:
- name: Run tests
run: |
- EMBED_LTO_BITCODE=1 ./test.sh --release --clean --release-sysroot --build-sysroot ${{ matrix.commands }}
+ # TODO: remove --features master when it is back to the default.
+ EMBED_LTO_BITCODE=1 ./test.sh --release --clean --release-sysroot --build-sysroot ${{ matrix.commands }} --features master
diff --git a/compiler/rustc_codegen_gcc/.github/workflows/stdarch.yml b/compiler/rustc_codegen_gcc/.github/workflows/stdarch.yml
index 28ac3cb65..42109ba3e 100644
--- a/compiler/rustc_codegen_gcc/.github/workflows/stdarch.yml
+++ b/compiler/rustc_codegen_gcc/.github/workflows/stdarch.yml
@@ -92,8 +92,10 @@ jobs:
- name: Build
run: |
./y.sh prepare --only-libcore
- ./y.sh build --release --release-sysroot
- cargo test
+ # TODO: remove `--features master` when it is back to the default.
+ ./y.sh build --release --release-sysroot --features master
+ # TODO: remove --features master when it is back to the default.
+ cargo test --features master
- name: Clean
if: ${{ !matrix.cargo_runner }}
@@ -111,12 +113,14 @@ jobs:
uses: actions-rs/cargo@v1.0.3
with:
command: build
- args: --release
+ # TODO: remove `--features master` when it is back to the default.
+ args: --release --features master
- name: Run tests
if: ${{ !matrix.cargo_runner }}
run: |
- ./test.sh --release --clean --release-sysroot --build-sysroot --mini-tests --std-tests --test-libcore
+ # TODO: remove `--features master` when it is back to the default.
+ ./test.sh --release --clean --release-sysroot --build-sysroot --mini-tests --std-tests --test-libcore --features master
- name: Run stdarch tests
if: ${{ !matrix.cargo_runner }}