Skip to content

Commit c4aa01b

Browse files
fixes
1 parent 41d46db commit c4aa01b

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

.github/workflows/cmake.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ jobs:
1515
cmake -DCMAKE_SHELL=false -DTEST_ONE="one;two" -DTEST_TWO=/one/two/three -DTEST_WIN_VARIABLE=test -DTEST_VARIABLE=test
1616
- run: |
1717
cd cmake/testfiles
18-
cmake -DCMAKE_SHELL=true -DTEST_ONE="one;two" -DTEST_TWO=/one/two/three -DTEST_VARIABLE=$USER -DTEST_WIN_VARIABLE=%OS%
18+
cmake -DCMAKE_SHELL=true -DTEST_ONE="one;two" -DTEST_TWO=/one/two/three -DTEST_VARIABLE=$USER -DTEST_WIN_VARIABLE=%OS% #not resolved %OS%
19+
shell: cmd

.github/workflows/rust.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,19 @@ jobs:
77
steps:
88
- uses: actions/checkout@v2
99
- run: |
10-
cd rust/src
10+
$cargoTarget = "$env:USERPROFILE\.cargo"
11+
if (-not (Test-Path $cargoTarget))
12+
{
13+
New-Item -ItemType Junction -Path $cargoTarget -Target "C:\Rust\.cargo"
14+
}
15+
16+
$rustupTarget = "$env:USERPROFILE\.rustup"
17+
if (-not (Test-Path $rustupTarget))
18+
{
19+
New-Item -ItemType Junction -Path $rustupTarget -Target "C:\Rust\.rustup"
20+
}
21+
22+
cd rust/src # no default chain
1123
rustc hello.rs
1224
./hello
1325
shell: pwsh

.github/workflows/xamarin-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ jobs:
99
- run: |
1010
cd xamarin-android/vs2019
1111
nuget restore XamarinAndroidVS2019.sln
12-
"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\msbuild.exe" "./XamarinAndroidVS2019/XamarinAndroidVS2019.csproj" /p:AndroidNdkDirectory="C:\Android\android-sdk\ndk-bundle" /p:configuration="Release" /t:PackageForAndroid
12+
"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\msbuild.exe" "XamarinAndroidVS2019\XamarinAndroidVS2019.csproj" /p:AndroidNdkDirectory="C:\Android\android-sdk\ndk-bundle" /p:configuration="Release" /t:PackageForAndroid

0 commit comments

Comments
 (0)