forked from libp2p/go-openssl
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disabling of the Windows runner. These tests were flaking. Because we don't support connector on Windows, I considered disabling these tests. Part of #10
- Loading branch information
Showing
3 changed files
with
3 additions
and
26 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
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 |
---|---|---|
|
@@ -27,14 +27,6 @@ jobs: | |
run: | | ||
go version | ||
go env | ||
- name: Use msys2 on windows | ||
if: startsWith(matrix.os, 'windows') | ||
shell: bash | ||
# The executable for msys2 is also called bash.cmd | ||
# https://github.com/actions/virtual-environments/blob/main/images/win/Windows2019-Readme.md#shells | ||
# If we prepend its location to the PATH | ||
# subsequent 'shell: bash' steps will use msys2 instead of gitbash | ||
run: echo "C:/msys64/usr/bin" >> $GITHUB_PATH | ||
- name: Run repo-specific setup | ||
uses: ./.github/actions/go-test-setup | ||
if: hashFiles('./.github/actions/go-test-setup') != '' | ||
|
@@ -55,7 +47,7 @@ jobs: | |
export "PATH=${{ env.PATH_386 }}:$PATH" | ||
go test -v ./... | ||
- name: Run tests with race detector | ||
if: startsWith(matrix.os, 'ubuntu') # speed things up. Windows and OSX VMs are slow | ||
if: startsWith(matrix.os, 'ubuntu') # speed things up. OSX VMs is slow | ||
uses: protocol/[email protected] | ||
with: | ||
run: go test -v -race ./... | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ "ubuntu", "windows", "macos" ] | ||
os: [ "ubuntu", "macos" ] | ||
go: [ "1.18.x", "1.19.x" ] | ||
env: | ||
COVERAGES: "" | ||
|
@@ -26,14 +26,6 @@ jobs: | |
run: | | ||
go version | ||
go env | ||
- name: Use msys2 on windows | ||
if: ${{ matrix.os == 'windows' }} | ||
shell: bash | ||
# The executable for msys2 is also called bash.cmd | ||
# https://github.com/actions/virtual-environments/blob/main/images/win/Windows2019-Readme.md#shells | ||
# If we prepend its location to the PATH | ||
# subsequent 'shell: bash' steps will use msys2 instead of gitbash | ||
run: echo "C:/msys64/usr/bin" >> $GITHUB_PATH | ||
- name: Run repo-specific setup | ||
uses: ./.github/actions/go-test-setup | ||
if: hashFiles('./.github/actions/go-test-setup') != '' | ||
|
@@ -54,7 +46,7 @@ jobs: | |
export "PATH=${{ env.PATH_386 }}:$PATH" | ||
go test -v -shuffle=on ./... | ||
- name: Run tests with race detector | ||
if: ${{ matrix.os == 'ubuntu' }} # speed things up. Windows and OSX VMs are slow | ||
if: ${{ matrix.os == 'ubuntu' }} # speed things up. OSX VMs is slow | ||
uses: protocol/[email protected] | ||
with: | ||
run: go test -v -race ./... | ||
|