-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,38 +119,18 @@ jobs: | |
- name: Checkout the repo | ||
uses: actions/[email protected] | ||
|
||
- run: rustc --version | ||
continue-on-error: true | ||
- run: cmake --version | ||
continue-on-error: true | ||
|
||
- name: Setup cmake | ||
uses: jwlawson/actions-setup-cmake@v2 | ||
with: | ||
cmake-version: '3.29.3' | ||
|
||
#- uses: hecrj/setup-rust-action@v2 | ||
# If I want a specific cmake version | ||
# - name: Setup cmake | ||
# uses: jwlawson/actions-setup-cmake@v2 | ||
# with: | ||
# rust-version: stable | ||
- name: Install latest nightly | ||
uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
override: true | ||
|
||
- run: rustc --version | ||
continue-on-error: true | ||
- run: cmake --version | ||
continue-on-error: true | ||
# cmake-version: '3.29.3' | ||
|
||
- 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 | ||
# If I want a specific rust version | ||
#- name: Install latest nightly | ||
# uses: actions-rs/[email protected] | ||
# with: | ||
# toolchain: stable | ||
# override: true | ||
|
||
- run: $env:TMP = "$env:USERPROFILE\T" | ||
continue-on-error: true | ||
|
@@ -206,6 +186,15 @@ jobs: | |
steps: | ||
- name: Checkout the repo | ||
uses: actions/[email protected] | ||
|
||
- name: Install stable rust toolchain | ||
uses: dtolnay/[email protected] | ||
|
||
- name: Setup cmake | ||
uses: jwlawson/actions-setup-cmake@v2 | ||
with: | ||
cmake-version: '3.29.3' | ||
|
||
- name: add Absytree as git safe.directory so nimble can install stuff | ||
run: git config --global --add safe.directory /__w/Absytree/Absytree | ||
- name: nimble setup | ||
|