diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml deleted file mode 100644 index 6fd31da..0000000 --- a/.github/workflows/cd.yml +++ /dev/null @@ -1,60 +0,0 @@ -name: Continuous Deployment - -on: - release: - types: [created] - -jobs: - Windows: - runs-on: windows-latest - - steps: - - uses: actions/checkout@v2 - with: - lfs: true - submodules: recursive - - - name: Configure - run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. - - - name: Build - run: cmake --build build --config Release - - - name: Test - run: build\liblsdj\test\Release\test.exe - - macOS: - runs-on: macos-latest - - steps: - - uses: actions/checkout@v2 - with: - lfs: true - submodules: recursive - - - name: Configure - run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. - - - name: Build - run: cmake --build build --config Release - - - name: Test - run: ./build/liblsdj/test/test - - Ubuntu: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - with: - lfs: true - submodules: recursive - - - name: Configure - run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. - - - name: Build - run: cmake --build build --config Release - - - name: Test - run: ./build/liblsdj/test/test