From 2756007744bf570b74370ad6a3e4b758183a8ada Mon Sep 17 00:00:00 2001 From: Daniel Zhu Date: Thu, 29 Oct 2020 13:05:50 -0700 Subject: [PATCH] Removed extraneous file --- .github/workflows/c-cpp.yml | 50 ------------------------------------- .github/workflows/spark.yml | 2 +- 2 files changed, 1 insertion(+), 51 deletions(-) delete mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml deleted file mode 100644 index c7d4744..0000000 --- a/.github/workflows/c-cpp.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: Compile and Run Spark Program - -on: - pull_request: - branches: [ master, develop, feature/* ] - push: - branches: [master] - -jobs: - windows: - name: run on windows - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - uses: ilammy/msvc-dev-cmd@v1.4.1 - - name: compile - run: | - cl main.cpp /Fe:spark-windows /std:c++latest - - name: run - run: | - spark-windows.exe test.spark - shell: cmd - - name: upload executable - uses: actions/upload-artifact@v2 - with: - name: windows - path: | - spark-windows.exe - mac-and-ubuntu: - runs-on: ${{matrix.os}} - strategy: - matrix: - os: [macos-latest, ubuntu-latest] - name: ${{matrix.os}} - steps: - - uses: actions/checkout@v2 - - name: compile - run: | - g++ -std=c++17 main.cpp -o spark-${{matrix.os}} - - name: run - run: | - ./spark-${{matrix.os}} test.spark - shell: bash - - name: upload executable - uses: actions/upload-artifact@v2 - with: - name: ${{matrix.os}} - path: | - spark-${{matrix.os}} - diff --git a/.github/workflows/spark.yml b/.github/workflows/spark.yml index 1dc2fe6..c7d4744 100644 --- a/.github/workflows/spark.yml +++ b/.github/workflows/spark.yml @@ -1,4 +1,4 @@ -name: C/C++ CI +name: Compile and Run Spark Program on: pull_request: