diff options
author | csett86 <csett86@web.de> | 2021-11-02 07:12:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 07:12:48 +0100 |
commit | 6cb32ec7e6f93183023289b903ac7540139560a3 (patch) | |
tree | 6f494bd4c4bef99a04ad5f26b49b2b7482a30cd1 | |
parent | a1c330961e042a395e18b5f3a23b5a4548c6bfcc (diff) |
ci: move to macOS 11 and 20.04 (#651)
Signed-off-by: Christoph Settgast <csett86@web.de>
-rw-r--r-- | .github/workflows/ci.yml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 18a7fbe..1ab9eb7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ on: jobs: build-linux: name: Linux - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 @@ -31,17 +31,12 @@ jobs: npm run dist build-mac: name: macOS - runs-on: macos-10.15 + runs-on: macos-11 steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: '14.x' - - name: Fixup Xcode - # https://github.com/actions/virtual-environments/issues/2557 - run: | - sudo xcode-select -s "/Applications/Xcode_12.4.app" - sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/* - name: Build it env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |