diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2024-01-29 23:14:58 +0100 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2024-01-29 23:14:58 +0100 |
| commit | a95a326cbce6a5a7e925b57d36efb5faa9bf2d51 (patch) | |
| tree | 90b173c28897e869b30a6050d05c1a81cd7aefe7 | |
| parent | d5f5bc5ba6d6ce48305073e0cd3ff2916989b034 (diff) | |
set correct path
| -rw-r--r-- | .github/workflows/nightly.yml | 2 | ||||
| -rwxr-xr-x | build.sh | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index e5e204b..be67d25 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -26,7 +26,7 @@ jobs: cd Odin make release - name: Build ols - run: ./build.sh -target:darwin_arm64 -extra-linker-flags:"--target=arm64-apple-macos" + run: ./build.sh CI_NO_TESTS -target:darwin_arm64 -extra-linker-flags:"--target=arm64-apple-macos" - name: Move to Dist run: | mkdir dist @@ -28,6 +28,12 @@ then #exit 1 fi fi +if [[ $1 == "CI_NO_TESTS" ]] +then + shift + + export PATH=$PATH:$PWD/Odin +fi if [[ $1 == "single_test" ]] then shift |