diff --git a/.github/workflows/MSVC6.0.yml b/.github/workflows/MSVC6.0.yml deleted file mode 100644 index a55454e..0000000 --- a/.github/workflows/MSVC6.0.yml +++ /dev/null @@ -1,67 +0,0 @@ ---- -name: MSVC6.0 - -on: - push: - pull_request: - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }}-${{ github.ref || github.run_id }} - cancel-in-progress: true - -jobs: - MSVC6: - runs-on: windows-latest - name: 'MSVC 6.0' - - steps: - - name: ๐Ÿ“ฅ Checkout - uses: actions/checkout@v4 - - - name: ๐Ÿ“ฅ Install MSVC6.0 - uses: actions/checkout@v4 - with: - repository: 'itsmattkc/MSVC600' - path: './MSVC6' - - - name: Setup MSVC6.0 - run: ./MSVC6/VC98/bin/VCVARS32.bat - - - name: โฌ‡๏ธ Setup CMake - uses: lukka/get-cmake@latest - with: - cmakeVersion: ~3.5 - ninjaVersion: ^1.11.1 - - - name: ๐Ÿ“‚ Load .env file - if: hashFiles('.github/workflows/.env') != '' - uses: xom9ikk/dotenv@v2 - with: - path: .github/workflows - - - name: โš™๏ธ run-cmake (configure) - uses: cmake-tools/run-cmake@v0-alpha - id: 'configure' - with: - mode: configure - generator: 'Visual Studio 6' - source_dir: ${{ env.CMAKE_SOURCE_PREFIX }} - install_prefix: ${{ env.CMAKE_INSTALL_PREFIX }} - binary_dir: ${{ env.CMAKE_BINARY_PREFIX }} - variables: | - CMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} - CMAKE_C_COMPILER=./MSVC6/MSVC600/VC98/Bin/CL.EXE - CMAKE_CXX_COMPILER=./MSVC6/MSVC600/VC98/Bin/CL.EXE - - - name: ๐Ÿ› ๏ธ run-cmake (build) - uses: cmake-tools/run-cmake@v0-alpha - id: build - with: - mode: build - config: ${{ env.CMAKE_BUILD_TYPE }} - - - name: ๐Ÿงช Test - run: ctest --test-dir ${{ env.CMAKE_BINARY_PREFIX }} -C ${{ env.CMAKE_BUILD_TYPE }} --output-on-failure - - name: ๐ŸŽ‰ Install - run: cmake --install ${{ env.CMAKE_BINARY_PREFIX }} --prefix ${{ env.CMAKE_INSTALL_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }}