From 532d307a75ef60a0caff7992e3e197ad07f02ffd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikkel=20Hjortsh=C3=B8j?= Date: Thu, 29 Oct 2020 20:06:50 +0100 Subject: [PATCH] [CI] Remove test stage for macOS and go back to macos-latest --- .github/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 844a1ef72..219dcebfd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - name: Odin check run: ./odin check examples/demo/demo.odin -vet build_macOS: - runs-on: macos-11.0 + runs-on: macos-latest steps: - uses: actions/checkout@v1 - name: Download LLVM and setup PATH @@ -24,12 +24,6 @@ jobs: echo "/usr/local/opt/llvm/bin" >> $GITHUB_PATH TMP_PATH=$(xcrun --show-sdk-path)/user/include echo "CPATH=$TMP_PATH" >> $GITHUB_ENV - echo $CPATH - - name: TEST - run: | - echo $CPATH - llc --version - opt --version - name: build odin run: make release - name: Odin run