From 102ecbccda325f76c4c9660c9bf22e2da2e7b7fa Mon Sep 17 00:00:00 2001 From: Chris Cranford Date: Sat, 30 Dec 2023 20:32:13 -0500 Subject: [PATCH] GH-43 Remove old workflow --- .github/workflows/windows-test.yml | 46 ------------------------------ 1 file changed, 46 deletions(-) delete mode 100644 .github/workflows/windows-test.yml diff --git a/.github/workflows/windows-test.yml b/.github/workflows/windows-test.yml deleted file mode 100644 index 1ccf9639..00000000 --- a/.github/workflows/windows-test.yml +++ /dev/null @@ -1,46 +0,0 @@ -#name: Windows Test -#on: -# pull_request: -# -#jobs: -# build: -# runs-on: windows-2019 -# name: Windows -# steps: -# - name: Checkout project -# uses: actions/checkout@v3 -# with: -# submodules: recursive -# -# - name: Setup Base Dependencies -# uses: ./.github/actions/base-deps -# -# - name: Install CMake -# uses: jwlawson/actions-setup-cmake@v1.14 -# with: -# cmake-version: '3.28' -# -# - name: Install Ninja -# run: choco install ninja -# -# - name: ccache -# uses: hendrikmuhs/ccache-action@v1.2 -# with: -# key: ccache-windows-test -# -# - uses: ilammy/msvc-dev-cmd@v1.12.1 -# -# - name: Build Orchestrator (Windows) -# run: | -# cmake -B ${{ github.workspace }}/.out-windows-test -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=cl -DCMAKE_C_COMPILER=cl -S ${{ github.workspace }} -G Ninja -# cmake --build ${{ github.workspace }}/.out-windows-test --target orchestrator -j 18 -# -# - name: Upload artifact -# uses: actions/upload-artifact@v3 -# with: -# name: ${{ github.event.repository.name }} -# retention-days: 1 -# path: | -# ${{ github.workspace }}/project/ -# -#