From 6072a757227294858b9faab5ff11de632236128a Mon Sep 17 00:00:00 2001 From: Joseph Marrero Corchado Date: Wed, 6 Nov 2024 17:12:16 -0500 Subject: [PATCH] ci: stop building with clang This works around https://github.com/coreos/rpm-ostree/issues/5137 by avoiding forking for rhel9 for now, we don't need a clang build for Fedora or RHEL. Will fix in the future when forking for rhel9 is unavoidable rhel9 fork would look as described in: https://github.com/coreos/rpm-ostree/pull/5140 --- .github/workflows/ci.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ac0c35159f..2c431e15a2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -97,18 +97,18 @@ jobs: # run: cargo fmt -- --check -l # - name: cargo clippy (warnings) # run: cargo clippy -- -D warnings - build-clang: - name: "Build (clang)" - runs-on: ubuntu-latest - container: registry.ci.openshift.org/coreos/fcos-buildroot:testing-devel - steps: - - name: Checkout repository - uses: actions/checkout@v3 - # https://github.com/actions/checkout/issues/760 - - name: Mark git checkout as safe - run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - - name: Build - run: ./ci/clang-build-check.sh + #build-clang: + # name: "Build (clang)" + # runs-on: ubuntu-latest + # container: registry.ci.openshift.org/coreos/fcos-buildroot:testing-devel + # steps: + # - name: Checkout repository + # uses: actions/checkout@v3 + # # https://github.com/actions/checkout/issues/760 + # - name: Mark git checkout as safe + # run: git config --global --add safe.directory "$GITHUB_WORKSPACE" + # - name: Build + # run: ./ci/clang-build-check.sh integration: name: "Container Integration" needs: [build, build-tests]