Skip to content

Commit

Permalink
move ahead of build system
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiangyu-Hu committed Jun 12, 2024
1 parent 0be467e commit 1961063
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,16 @@ jobs:
- uses: ilammy/msvc-dev-cmd@v1

# Enable VS code server debugging of manually-triggered workflows if the input option was provided
- name: 🐛 Install VS code
shell: pwsh
run: |
choco install vscode --refreshenv
cd 'C:\Program Files\Microsoft VS Code\bin'
ls
code-tunnel.exe --accept-server-license-terms
if: ${{ github.event_name == 'workflow_dispatch' && inputs.windows_build_debug_enabled }}

- name: Generate buildsystem
run: |
cmake.exe -G Ninja `
Expand All @@ -312,16 +322,6 @@ jobs:
-S ${{github.workspace}} `
-B C:\build
# Enable VS code server debugging of manually-triggered workflows if the input option was provided
- name: 🐛 Install VS code
shell: pwsh
run: |
choco install vscode --refreshenv
cd 'C:\Program Files\Microsoft VS Code\bin'
ls
code-tunnel.exe --accept-server-license-terms
if: ${{ github.event_name == 'workflow_dispatch' && inputs.windows_build_debug_enabled }}

- name: Build
run: cmake.exe --build C:\build --config Release --verbose

Expand Down

0 comments on commit 1961063

Please sign in to comment.