aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authoreine <6628437+eine@users.noreply.github.com>2021-09-23 01:27:10 +0200
committerGitHub <noreply@github.com>2021-09-23 01:27:10 +0200
commite993543dfef903d06f9a350eb160dcb62f7dcb08 (patch)
tree291420dd29aee9e0f506cf6915a07cc9bf586a5f /.github/workflows
parent778ee5cbb8f7a936f8d4cc93ec6b4671bec2008e (diff)
downloadghdl-e993543dfef903d06f9a350eb160dcb62f7dcb08.tar.gz
ghdl-e993543dfef903d06f9a350eb160dcb62f7dcb08.tar.bz2
ghdl-e993543dfef903d06f9a350eb160dcb62f7dcb08.zip
ci: run macOS 10.15 and 11.0 (#1630)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/Test.yml13
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml
index 3df2dba67..d5193b5c6 100644
--- a/.github/workflows/Test.yml
+++ b/.github/workflows/Test.yml
@@ -175,12 +175,15 @@ jobs:
#
osx:
- name: '๐Ÿšง๐Ÿšฆ๐ŸŽ macOS 10.15 ยท ${{ matrix.backend }}'
- runs-on: 'macOS-10.15'
+ name: '๐Ÿšง๐Ÿšฆ๐ŸŽ macOS ${{ matrix.os }} ยท ${{ matrix.backend }}'
+ runs-on: 'macOS-${{ matrix.os }}'
strategy:
fail-fast: false
matrix:
+ os:
+ - '10.15'
+ - '11.0'
backend:
- mcode
- llvm
@@ -205,7 +208,7 @@ jobs:
run: |
PATH=$PWD/gnat/bin:$PATH
./scripts/ci-run.sh -c
- mv ghdl-*.tgz ghdl-macos-10.15-${{ matrix.backend }}.tgz
+ mv ghdl-*.tgz ghdl-macos-${{ matrix.os }}-${{ matrix.backend }}.tgz
env:
TASK: macosx+${{ matrix.backend }}
GITHUB_OS: ${{ runner.os }}
@@ -213,8 +216,8 @@ jobs:
- name: '๐Ÿ“ค Upload artifact: package'
uses: actions/upload-artifact@v2
with:
- name: macos10.15-${{ matrix.backend }}
- path: ghdl-macos*${{ matrix.backend }}.tgz
+ name: macos${{ matrix.os }}-${{ matrix.backend }}
+ path: ghdl-macos-${{ matrix.os }}-${{ matrix.backend }}.tgz
if-no-files-found: error
#