From 72a4356e4a836973aacdc6825185630c0e1e81e9 Mon Sep 17 00:00:00 2001 From: cmclark00 Date: Tue, 13 Aug 2024 22:04:42 -0400 Subject: [PATCH] idk --- .github/workflows/workflow.yml | 46 ---------------------------------- 1 file changed, 46 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 3f2cdf1..6b279ff 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -34,49 +34,3 @@ jobs: with: name: linux-${{ matrix.arch }}-binaries path: build/* - - build-macos: - name: Build on macOS - runs-on: macos-latest - strategy: - matrix: - arch: [x64, arm64] - steps: - - uses: actions/checkout@v3 - - name: Install Dependencies - run: brew install cmake - - name: Build - run: | - mkdir build - cd build - cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES=$(if [ "${{ matrix.arch }}" == "x64" ]; then echo "x86_64"; else echo "arm64"; fi) - make - - name: Upload Artifact - uses: actions/upload-artifact@v3 - with: - name: macos-${{ matrix.arch }}-binaries - path: build/* - - build-windows: - name: Build on Windows - runs-on: windows-latest - strategy: - matrix: - arch: [x64, arm64] - steps: - - uses: actions/checkout@v3 - - name: Install Dependencies - run: | - choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' - choco install mingw - - name: Build - run: | - mkdir build - cd build - cmake .. -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release - mingw32-make - - name: Upload Artifact - uses: actions/upload-artifact@v3 - with: - name: windows-${{ matrix.arch }}-binaries - path: build/*