From 6e97c233e9828730c5053b5f162a19bc981af1f2 Mon Sep 17 00:00:00 2001 From: Elliott Slaughter Date: Fri, 19 Feb 2021 13:17:50 -0800 Subject: [PATCH 1/2] Fixes for macOS build. --- .github/workflows/ci_tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 686114ce41..16482825cb 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -94,10 +94,9 @@ jobs: run: | curl -L -O http://releases.llvm.org/6.0.0/clang+llvm-6.0.0-x86_64-apple-darwin.tar.xz tar xf clang+llvm-6.0.0-x86_64-apple-darwin.tar.xz - PATH=$PWD/clang+llvm-6.0.0-x86_64-apple-darwin/bin:$PATH export CMAKE_PREFIX_PATH=$PWD/clang+llvm-6.0.0-x86_64-apple-darwin export INCLUDE_PATH="$(xcrun --sdk macosx --show-sdk-path)/usr/include" - export SDKROOT=`xcrun --show-sdk-path` + export SDKROOT="$(xcrun --sdk macosx --show-sdk-path)" ./test.py env: TEST_LEGION_CXX: 0 From 59621e3c0ca4244a8ea1c855324025ce0c9a04f7 Mon Sep 17 00:00:00 2001 From: Elliott Slaughter Date: Fri, 19 Feb 2021 13:20:53 -0800 Subject: [PATCH 2/2] Run Github Actions on PR. --- .github/workflows/ci_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 16482825cb..4eefb36a15 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -1,5 +1,5 @@ name: ci_tests -on: push +on: [push, pull_request] jobs: test1: name: Test 1