https://gcc.gnu.org/g:b5c354d038f800695a8d730c56c4a4f744134adb

commit b5c354d038f800695a8d730c56c4a4f744134adb
Author: Philip Herron <herron.phi...@googlemail.com>
Date:   Thu Dec 19 13:35:09 2024 +0000

    gccrs: disable macos github workflow
    
    Its broken at the moment.
    
    ChangeLog:
    
            * .github/workflows/ccpp.yml: comment it out
    
    Signed-off-by: Philip Herron <herron.phi...@googlemail.com>

Diff:
---
 .github/workflows/ccpp.yml | 116 ++++++++++++++++++++++-----------------------
 1 file changed, 58 insertions(+), 58 deletions(-)

diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml
index dfb090617f5e..4e9a629fb027 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:

Reply via email to