From 38040c5a73f73fe4dba5f3b7e8c8bf28f863e450 Mon Sep 17 00:00:00 2001 From: Jake Bolewski Date: Tue, 26 Jan 2021 12:59:42 -0700 Subject: [PATCH] build sysimg but don't fail on error, disable running tests with sysimg until 1.5.4 bugfix --- .github/workflows/OS-UnitTests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/OS-UnitTests.yml b/.github/workflows/OS-UnitTests.yml index b82348f1e50..7278de3308f 100644 --- a/.github/workflows/OS-UnitTests.yml +++ b/.github/workflows/OS-UnitTests.yml @@ -72,10 +72,11 @@ jobs: - name: Build System Image if: steps.filter.outputs.run_test == 'true' + continue-on-error: true run: | julia --project=@. .dev/systemimage/climate_machine_image.jl ClimateMachine.so true - name: Run Unit Tests if: steps.filter.outputs.run_test == 'true' run: | - julia --project=@. -J ClimateMachine.so -e 'using Pkg; Pkg.test()' + julia --project=@. -e 'using Pkg; Pkg.test()'