From 1e2a009778cd6b5d54d083bf55f09eac93d8c214 Mon Sep 17 00:00:00 2001 From: Noel Berry Date: Fri, 2 Dec 2022 18:56:55 -0800 Subject: [PATCH] removing workflows for now, will revisit later --- .github/workflows/ci.yml | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 1f016ed..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: CI - -on: - push: - pull_request: - -jobs: - - build-ubuntu: - runs-on: ubuntu-latest - strategy: - fail-fast: false - steps: - - uses: lukka/get-cmake@latest - - uses: actions/checkout@master - - name: build - run: | - mkdir build - cd build - cmake ../ - cmake --build . - build-windows: - runs-on: windows-latest - strategy: - fail-fast: false - steps: - - uses: lukka/get-cmake@latest - - uses: actions/checkout@master - - name: build - run: | - mkdir build - cd build - echo 'Building SDL2 platform' - cmake ../ -DBLAH_PLATFORM_WIN32=OFF -DBLAH_PLATFORM_SDL2=ON - cmake --build . - echo 'Building win32 platform' - cmake ../ -DBLAH_PLATFORM_WIN32=ON -DBLAH_PLATFORM_SDL2=OFF - cmake --build . \ No newline at end of file