diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index b41fbe6..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: C/C++ CI - -on: [push] - -jobs: - build-ubuntu: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v1 - - name: linux-release - run: ./build_libs_release.sh && scons platform=x11 target=release - - name: linux-debug - run: ./build_libs_debug.sh && scons platform=x11 target=debug - - build-windows: - - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [windows-latest, windows-2016] - - steps: - - uses: actions/checkout@v1 - - name: windows-release - run: ./build_libs_release.bat & scons platform=windows target=release - - name: windows-debug - run: ./build_libs_debug.bat & scons platform=windows target=debug