Skip to content

Commit

Permalink
fixup! .github/workflows: fix gotip tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
0x2b3bfa0 committed Feb 28, 2025
1 parent e31e51b commit aaaaf4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
if: runner.os != 'Windows'
run: |
git clone --filter=tree:0 https://go.googlesource.com/go $HOME/gotip
$env:GOROOT_BOOTSTRAP = (go env GOROOT)
cd $HOME/gotip/src && ./make.bash
echo "$HOME/gotip/bin" >> $GITHUB_PATH
- name: Install Go tip (Windows)
if: runner.os == 'Windows'
run: |
git clone --filter=tree:0 https://go.googlesource.com/go $HOME/gotip
$env:GOROOT_BOOTSTRAP = (go env GOROOT)
cd $HOME/gotip/src && ./make.bat
echo "$HOME/gotip/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Checkout repository
Expand Down

0 comments on commit aaaaf4a

Please sign in to comment.