aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authortgingold <tgingold@users.noreply.github.com>2022-07-06 07:06:09 +0200
committerGitHub <noreply@github.com>2022-07-06 07:06:09 +0200
commit0c1a7105b9379e75d83dc23650ac995823128bfa (patch)
treebb7a68cf6cb3085681dacd593fe5f8f82f6f2923 /.github
parentad14451e079b5762a3987ee0f15bbd0204308bd7 (diff)
downloadghdl-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
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/Test.yml6
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: