Skip to content

Commit ac7fb95

Browse files
authored
Merge pull request #3262 from hi-rustin/rustin-patch-release
Add target env for windows
2 parents 0898f38 + 93c32a8 commit ac7fb95

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.github/workflows/windows-builds-on-master.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
- name: Set PATH
6565
run: |
6666
echo "%USERPROFILE%\.cargo\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
67+
echo "TARGET=${{ matrix.target }}" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
6768
- name: Skip tests
6869
if: matrix.run_tests == '' || matrix.mode == 'release'
6970
run: |

.github/workflows/windows-builds-on-pr.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
- name: Set PATH
5959
run: |
6060
echo "%USERPROFILE%\.cargo\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
61+
echo "TARGET=${{ matrix.target }}" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
6162
- name: Skip tests
6263
if: matrix.run_tests == '' || matrix.mode == 'release'
6364
run: |

.github/workflows/windows-builds-on-stable.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767
- name: Set PATH
6868
run: |
6969
echo "%USERPROFILE%\.cargo\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
70+
echo "TARGET=${{ matrix.target }}" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
7071
- name: Skip tests
7172
if: matrix.run_tests == '' || matrix.mode == 'release'
7273
run: |

ci/actions-templates/windows-builds-template.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ jobs:
7676
- name: Set PATH
7777
run: |
7878
echo "%USERPROFILE%\.cargo\bin" | Out-File -Append -FilePath $env:GITHUB_PATH -Encoding utf8
79+
echo "TARGET=${{ matrix.target }}" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
7980
- name: Skip tests
8081
if: matrix.run_tests == '' || matrix.mode == 'release'
8182
run: |

0 commit comments

Comments
 (0)