summaryrefslogtreecommitdiff
path: root/.github/workflows/windows_build.yml
diff options
context:
space:
mode:
authorcoco875 <pereira.jannin@gmail.com>2024-01-24 23:28:35 +0100
committerLywx <kiritodev01@gmail.com>2024-01-24 16:52:59 -0600
commit04497c0267da7cd0c8400e7a85de23cb6428b827 (patch)
treeb139d14fbd4219062de96a3fb429e0ddedda90c9 /.github/workflows/windows_build.yml
parentec3e74dfcdb48c07fe55a2e24d05007e41c817f6 (diff)
disable windows build and add mac build
Diffstat (limited to '.github/workflows/windows_build.yml')
-rw-r--r--.github/workflows/windows_build.yml35
1 files changed, 18 insertions, 17 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml
index 47d1d69..7859016 100644
--- a/.github/workflows/windows_build.yml
+++ b/.github/workflows/windows_build.yml
@@ -1,22 +1,23 @@
name: Windows Compile
on:
- push:
- branches: [ "*" ]
- pull_request:
- branches: [ "master" ]
+ push:
+ branches: [ "*" ]
+ pull_request:
+ branches: [ "master" ]
jobs:
- build:
- runs-on: windows-2022
- steps:
- - uses: actions/checkout@v4
- - name: Build
- run: |
- cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T v142 -A x64 -DCMAKE_BUILD_TYPE=Release
- cmake --build ./build/x64
- - name: Publish packaged artifacts
- uses: actions/upload-artifact@v4
- with:
- name: windows
- path: build/x64 \ No newline at end of file
+ build:
+ if: false
+ runs-on: windows-2022
+ steps:
+ - uses: actions/checkout@v4
+ - name: Build
+ run: |
+ cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T v142 -A x64 -DCMAKE_BUILD_TYPE=Release
+ cmake --build ./build/x64
+ - name: Publish packaged artifacts
+ uses: actions/upload-artifact@v4
+ with:
+ name: windows-x64
+ path: build/x64 \ No newline at end of file