From 7549ae1b7120fc67f9a75597f6c6cc4054f13949 Mon Sep 17 00:00:00 2001 From: tstellar Date: Fri, 18 Oct 2019 21:36:20 -0700 Subject: [PATCH 1/2] Test action Test --- .github/workflows/main.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000000000..f328dd5f65a0f --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,22 @@ +name: CI + +on: + push: + types: + +jobs: + build: + runs-on: macOS-latest + + steps: + - uses: actions/checkout@v1 + - name: Create build directory + run: mkdir build + - name: Change to build directory + run: cd build + - name: Configure llvm + run: cmake -G Ninja ../llvm -DCMAKE_BUILD_TYPE=Release -DLLVM_BUILD_LLVM_DYLIB=ON -DLLVM_LINK_LLVM_DYLIB=ON + - name: Build and test llvm + run: ninja check-all + + From 3a4b84137e717179180b6fff57844acb1b616191 Mon Sep 17 00:00:00 2001 From: tstellar Date: Fri, 18 Oct 2019 21:41:41 -0700 Subject: [PATCH 2/2] Test Test --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f328dd5f65a0f..4d17444ee83e2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,6 +10,8 @@ jobs: steps: - uses: actions/checkout@v1 + - name: Change to source directory + run: cd llvm-project - name: Create build directory run: mkdir build - name: Change to build directory