Skip to content

Commit f44193a

Browse files
authored
Mark x86 CI as xfail (#2614)
* Mark x86 CI as xfail * Modify CI workflow continue-on-error conditions Updated CI workflow to change continue-on-error conditions for nightly builds and x86 architecture.
1 parent b507951 commit f44193a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,13 @@ jobs:
103103
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager
104104
- name: Build libEnzyme
105105
if: ${{ matrix.libEnzyme == 'local' && matrix.os != 'macOS-latest'}}
106-
continue-on-error: ${{ matrix.version == 'nightly' }}
107106
id: build_libenzyme
108107
run: |
109108
julia --color=yes --project=deps -e 'using Pkg; Pkg.instantiate()'
110109
julia --color=yes --project=deps deps/build_local.jl
111110
cp LocalPreferences.toml test/
112111
- name: Build libEnzyme MacOS
113112
if: ${{ matrix.libEnzyme == 'local' && matrix.os == 'macOS-latest'}}
114-
continue-on-error: ${{ matrix.version == 'nightly' }}
115113
id: build_libenzyme_mac
116114
run: |
117115
julia --color=yes --project=deps -e 'using Pkg; Pkg.instantiate()'
@@ -125,7 +123,7 @@ jobs:
125123
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager
126124
- uses: julia-actions/julia-runtest@v1
127125
if: matrix.version != 'nightly' || steps.buildpkg.outcome == 'success'
128-
continue-on-error: ${{ matrix.version == 'nightly' }}
126+
continue-on-error: ${{ matrix.version == 'nightly' || matrix.arch == 'x86' }}
129127
id: run_tests
130128
# TODO restore coverage post https://github.com/JuliaGPU/GPUCompiler.jl/pull/711
131129
with:

0 commit comments

Comments
 (0)