File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,11 @@ steps:
2525 mkdir -p "$OCEANANIGANS_DIR"
2626 rsync -a . "$OCEANANIGANS_DIR/"
2727 cd "$OCEANANIGANS_DIR"
28- mv Manifest.toml Manifest-v1.12.toml
2928
3029 julia +$JULIA_VERSION -O0 --color=yes --project -e 'using Pkg; Pkg.test()'
30+ # After we have instantiated the general environment, move manifest to the
31+ # version-specific filename, not to clash with the manifest for Enzyme.
32+ mv -v Manifest.toml Manifest-v$(echo "${JULIA_VERSION}" | cut -d. -f1-2).toml
3133 retry :
3234 automatic :
3335 - exit_status : 1
4547 cd "$OCEANANIGANS_DIR"
4648
4749 julia +$JULIA_VERSION_ENZYME -O0 --color=yes --project -e 'using Pkg; Pkg.test()'
50+ # After we have instantiated the Enzyme environment, move manifest to the
51+ # version-specific filename, not to clash with the general manifest.
52+ mv -v Manifest.toml Manifest-v$(echo "${JULIA_VERSION_ENZYME}" | cut -d. -f1-2).toml
4853 retry :
4954 automatic :
5055 - exit_status : 1
@@ -140,7 +145,7 @@ steps:
140145
141146 # Run tests
142147 cd "$OCEANANIGANS_DIR"
143- julia +$JULIA_VERSIO_ENZYME -O0 --color=yes --project -e 'using Pkg; Pkg.test()'
148+ julia +$JULIA_VERSION_ENZYME -O0 --color=yes --project -e 'using Pkg; Pkg.test()'
144149
145150 matrix :
146151 setup :
You can’t perform that action at this time.
0 commit comments