diff options
| author | zhibog <zhibog-github@web.de> | 2023-05-03 21:51:40 +0200 |
|---|---|---|
| committer | zhibog <zhibog-github@web.de> | 2023-05-03 21:51:40 +0200 |
| commit | 05856ac93e3d07d5d0d620d2dc3601b57884ae3f (patch) | |
| tree | 06b609ee778d2186cb3c98c149b8c34c9ec9f3eb /.github | |
| parent | 60c29e195a403de7a3d173e4d331af6090ff1f59 (diff) | |
Change nightly to VS 2022 too
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/nightly.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 7fe7513e0..67d0396c1 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -7,18 +7,18 @@ on: jobs: build_windows: - runs-on: windows-2019 + runs-on: windows-2022 steps: - uses: actions/checkout@v1 - name: build Odin shell: cmd run: | - call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat + call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat ./build.bat 1 1 - name: Odin run shell: cmd run: | - call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat + call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat odin run examples/demo - name: Copy artifacts run: | |