Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimaoth authored Jul 16, 2024
1 parent 27a6863 commit 73418a9
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,11 @@ jobs:
- name: Checkout the repo
uses: actions/[email protected]

- run: cargo --help
- run: rustc --version
continue-on-error: true
- run: cmake --help
- run: cmake --version
continue-on-error: true

- run: SET TMP=C:\Temp

- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2
with:
Expand All @@ -140,9 +138,25 @@ jobs:
toolchain: stable
override: true

- run: cargo --help
- run: rustc --version
continue-on-error: true
- run: cmake --version
continue-on-error: true

- run: SET TMP=C:\Temp
continue-on-error: true
- run: SET TEMP=C:\Temp
continue-on-error: true
- run: echo %TMP%
continue-on-error: true
- run: echo %TEMP%
continue-on-error: true

- run: $env:TMP = "C:\Temp"
continue-on-error: true
- run: $env:TEMP = "C:\Temp"
continue-on-error: true
- run: cmake --help
- run: echo $env:TMP $env:TEMP
continue-on-error: true

- uses: iffy/install-nim@v5
Expand Down

0 comments on commit 73418a9

Please sign in to comment.