diff options
author | tgingold <tgingold@users.noreply.github.com> | 2022-07-06 07:06:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-06 07:06:09 +0200 |
commit | 0c1a7105b9379e75d83dc23650ac995823128bfa (patch) | |
tree | bb7a68cf6cb3085681dacd593fe5f8f82f6f2923 | |
parent | ad14451e079b5762a3987ee0f15bbd0204308bd7 (diff) | |
download | ghdl-0c1a7105b9379e75d83dc23650ac995823128bfa.tar.gz ghdl-0c1a7105b9379e75d83dc23650ac995823128bfa.tar.bz2 ghdl-0c1a7105b9379e75d83dc23650ac995823128bfa.zip |
Fix CI failure on macosx (llvm) (#2128)
* Test.yml: add llvm at the end of PATH for macosx
-rw-r--r-- | .github/workflows/Test.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 0d511f32b..ed23d1321 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -212,13 +212,11 @@ jobs: # Although we cache this, we let the script run to check if the cache is valid (without conditions) - name: '⚙ Dependencies (brew)' - run: | - ./scripts/macosx/install-ada.sh - brew list + run: ./scripts/macosx/install-ada.sh - name: '🚧 Build and 🚦 Test GHDL' run: | - PATH=$PWD/gnat/bin:$PATH + PATH=$PWD/gnat/bin:$PATH:/usr/local/Cellar/llvm@13/13.0.1/bin/ ./scripts/ci-run.sh -c mv ghdl-*.tgz ghdl-macos-${{ matrix.os }}-${{ matrix.backend }}.tgz env: |