Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Commit 751fed7

Browse files
Merge #1951
1951: build sysimg but don't fail on error, disable running tests with sysimg until 1.5.4 bugfix r=jakebolewski a=jakebolewski ### Description Due to bugs in the julia 1.5.(2,3) runtime, the CI sysimg build is currently broken. Disable until Julia v1.5.4 with included bugfixes is released JuliaLang/julia#39351. Co-authored-by: Jake Bolewski <jakebolewski@gmail.com>
2 parents fe19efd + 38040c5 commit 751fed7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/OS-UnitTests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,11 @@ jobs:
7272
7373
- name: Build System Image
7474
if: steps.filter.outputs.run_test == 'true'
75+
continue-on-error: true
7576
run: |
7677
julia --project=@. .dev/systemimage/climate_machine_image.jl ClimateMachine.so true
7778
7879
- name: Run Unit Tests
7980
if: steps.filter.outputs.run_test == 'true'
8081
run: |
81-
julia --project=@. -J ClimateMachine.so -e 'using Pkg; Pkg.test()'
82+
julia --project=@. -e 'using Pkg; Pkg.test()'

0 commit comments

Comments
 (0)