aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Herron <herron.philip@googlemail.com>2024-12-19 13:35:09 +0000
committerPhilip Herron <philip.herron@embecosm.com>2024-12-19 14:02:26 +0000
commitb5c354d038f800695a8d730c56c4a4f744134adb (patch)
treee36a8a6107fc7994cd636020c8b2a90582e3f6b3
parent19fa68dbb03a5a9a0ec357f7b9398471d69bdcd6 (diff)
downloadgcc-b5c354d038f800695a8d730c56c4a4f744134adb.zip
gcc-b5c354d038f800695a8d730c56c4a4f744134adb.tar.gz
gcc-b5c354d038f800695a8d730c56c4a4f744134adb.tar.bz2
gccrs: disable macos github workflow
Its broken at the moment. ChangeLog: * .github/workflows/ccpp.yml: comment it out Signed-off-by: Philip Herron <herron.philip@googlemail.com>
-rw-r--r--.github/workflows/ccpp.yml116
1 files changed, 58 insertions, 58 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml
index dfb0906..4e9a629 100644
--- a/.github/workflows/ccpp.yml
+++ b/.github/workflows/ccpp.yml
@@ -367,64 +367,64 @@ jobs:
exit 0; \
fi
- build-and-check-clang-macos:
-
- env:
- # Force CC/CXX to be explicitly clang to make it clear which compiler is used
- CC: clang
- CXX: clang++
-
- runs-on: macos-13
-
- steps:
- - uses: actions/checkout@v4
-
- - name: Install Deps
- run: |
- brew install dejagnu mpfr libmpc gmp;
- # install Rust directly using rustup
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0;
-
- - name: Make Source Read-Only
- run: chmod -R a-w ./*
-
- - name: Configure
- run: |
- mkdir -p gccrs-build;
- cd gccrs-build;
- ../configure \
- --enable-languages=rust \
- --disable-bootstrap \
- --enable-multilib \
- --with-native-system-header-dir=/usr/include \
- --with-sysroot=$(xcrun --show-sdk-path)
-
- - name: Build
- shell: bash
- run: |
- cd gccrs-build; \
- make -j $(sysctl -n hw.ncpu) 2>&1 | tee log
-
- - name: Run Tests
- run: |
- cd gccrs-build; \
- make check-rust
- - name: Archive check-rust results
- uses: actions/upload-artifact@v3
- with:
- name: check-rust-logs-macos
- path: |
- gccrs-build/gcc/testsuite/rust/
- - name: Check regressions
- run: |
- cd gccrs-build; \
- if grep -e "unexpected" -e "unresolved" -e "ERROR:" gcc/testsuite/rust/rust.sum;\
- then \
- echo "::error title=Regression test failed::some tests are not correct"; \
- exit 1; \
- else \
- exit 0; \
- fi
+ # build-and-check-clang-macos:
+
+ # env:
+ # # Force CC/CXX to be explicitly clang to make it clear which compiler is used
+ # CC: clang
+ # CXX: clang++
+
+ # runs-on: macos-13
+
+ # steps:
+ # - uses: actions/checkout@v4
+
+ # - name: Install Deps
+ # run: |
+ # brew install dejagnu mpfr libmpc gmp;
+ # # install Rust directly using rustup
+ # curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0;
+
+ # - name: Make Source Read-Only
+ # run: chmod -R a-w ./*
+
+ # - name: Configure
+ # run: |
+ # mkdir -p gccrs-build;
+ # cd gccrs-build;
+ # ../configure \
+ # --enable-languages=rust \
+ # --disable-bootstrap \
+ # --enable-multilib \
+ # --with-native-system-header-dir=/usr/include \
+ # --with-sysroot=$(xcrun --show-sdk-path)
+
+ # - name: Build
+ # shell: bash
+ # run: |
+ # cd gccrs-build; \
+ # make -j $(sysctl -n hw.ncpu) 2>&1 | tee log
+
+ # - name: Run Tests
+ # run: |
+ # cd gccrs-build; \
+ # make check-rust
+ # - name: Archive check-rust results
+ # uses: actions/upload-artifact@v3
+ # with:
+ # name: check-rust-logs-macos
+ # path: |
+ # gccrs-build/gcc/testsuite/rust/
+ # - name: Check regressions
+ # run: |
+ # cd gccrs-build; \
+ # if grep -e "unexpected" -e "unresolved" -e "ERROR:" gcc/testsuite/rust/rust.sum;\
+ # then \
+ # echo "::error title=Regression test failed::some tests are not correct"; \
+ # exit 1; \
+ # else \
+ # exit 0; \
+ # fi
build-and-check-asan: