Skip to content

Commit

Permalink
ci: stop building with clang
Browse files Browse the repository at this point in the history
This workaround #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: #5140
  • Loading branch information
jmarrero committed Nov 6, 2024
1 parent 9d0c4ff commit 1b7bd40
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 1b7bd40

Please sign in to comment.