From a80ca1851883d8bfbf8372184e126cf2ce5f57ab Mon Sep 17 00:00:00 2001 From: Trung Nguyen <24930+trung@users.noreply.github.com> Date: Thu, 21 May 2020 14:50:45 -0400 Subject: [PATCH] use xcode 10.3 (#19) to fix the issue when running in MacOS 10.13 --- .github/workflows/build.yml | 7 +++++++ .github/workflows/release.yml | 1 + 2 files changed, 8 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d8e5d93a..a033799c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,5 +1,7 @@ name: Build on: [push, pull_request] +env: + DEVELOPER_DIR: /Applications/Xcode_10.3.app/Contents/Developer # fix issue with macos 10.13.x jobs: build: name: Build on ${{ matrix.vm }} @@ -28,6 +30,11 @@ jobs: id: build run: | make dist + - name: Upload artifacts + uses: actions/upload-artifact@v2 + with: + name: istanbul-${{ matrix.vm }} + path: build/bin/istanbul notify: name: Notify Slack needs: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eae2e658..8c8796a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,7 @@ on: - 'v*' env: BINTRAY_PACKAGE: istanbul + DEVELOPER_DIR: /Applications/Xcode_10.3.app/Contents/Developer # fix issue with macos 10.13.x jobs: build: name: Build on ${{ matrix.vm }}