diff options
author | Edu Garcia <28616+Arcnor@users.noreply.github.com> | 2021-02-02 11:27:48 +0000 |
---|---|---|
committer | eine <6628437+eine@users.noreply.github.com> | 2021-02-02 16:06:31 +0100 |
commit | 76b03643b0123dc077acaa967a9c383deeb923d8 (patch) | |
tree | d8419e164572add61c266110d69e8cfb10914344 /.github/workflows | |
parent | 6e9f8e7d2fa6ed70fad586fbb049ae34b9dbbfa5 (diff) | |
download | ghdl-76b03643b0123dc077acaa967a9c383deeb923d8.tar.gz ghdl-76b03643b0123dc077acaa967a9c383deeb923d8.tar.bz2 ghdl-76b03643b0123dc077acaa967a9c383deeb923d8.zip |
ci: enable both mcode and llvm builds for macos
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/Test.yml | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 436dd1b68..1fa176474 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -154,8 +154,16 @@ jobs: # osx: + strategy: + fail-fast: false + max-parallel: 2 + matrix: + include: [ + { backend: mcode }, + { backend: brew-llvm } + ] runs-on: macOS-latest - name: '๐ macOS ยท mcode' + name: '๐ macOS ยท ${{ matrix.backend }}' steps: - name: '๐งฐ Checkout' @@ -176,15 +184,15 @@ jobs: run: | PATH=$PWD/gnat/bin:$PATH ./scripts/ci-run.sh -c - mv ghdl-*.tgz ghdl-osx-mcode.tgz + mv ghdl-*.tgz ghdl-osx-${{ matrix.backend }}.tgz env: - TASK: macosx+mcode + TASK: macosx+${{ matrix.backend }} GITHUB_OS: ${{ runner.os }} - name: '๐ค Upload artifact: package' uses: actions/upload-artifact@v2 with: - path: ghdl-osx-mcode.tgz + path: ghdl-osx-${{ matrix.backend }}.tgz # # Windows Build |