-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Roman Volosatovs <[email protected]>
- Loading branch information
1 parent
6fc6a04
commit 8df2f4a
Showing
2 changed files
with
18 additions
and
7 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 |
---|---|---|
|
@@ -125,11 +125,13 @@ jobs: | |
- uses: msys2/setup-msys2@v2 | ||
if: matrix.config.os == 'windows-latest' | ||
with: | ||
path-type: inherit | ||
update: true | ||
install: mingw-w64-x86_64-toolchain | ||
|
||
msystem: MINGW64 | ||
path-type: inherit | ||
- run: git config --global core.autocrlf input | ||
if: matrix.config.os == 'windows-latest' | ||
|
||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | ||
with: | ||
|
@@ -142,12 +144,15 @@ jobs: | |
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: go.mod | ||
if: matrix.config.os != 'windows-latest' | ||
- run: rustup show | ||
if: matrix.config.os != 'windows-latest' | ||
- uses: Swatinem/[email protected] | ||
if: matrix.config.os != 'windows-latest' | ||
- uses: cargo-bins/[email protected] | ||
- run: cargo binstall -y [email protected] | ||
- run: go generate ./tests/go/... | ||
- run: go test ./... | ||
- run: go test -failfast ./... | ||
env: | ||
GOGC: 1 | ||
WEST_LOG: trace | ||
|
@@ -178,22 +183,29 @@ jobs: | |
- uses: msys2/setup-msys2@v2 | ||
if: matrix.config.os == 'windows-latest' | ||
with: | ||
path-type: inherit | ||
update: true | ||
install: mingw-w64-x86_64-toolchain | ||
msystem: MINGW64 | ||
path-type: inherit | ||
- run: git config --global core.autocrlf input | ||
if: matrix.config.os == 'windows-latest' | ||
|
||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- run: rustup set default-host x86_64-pc-windows-gnu | ||
if: matrix.config.os == 'windows-latest' | ||
- run: rustup show | ||
|
||
- uses: Swatinem/[email protected] | ||
- uses: cargo-bins/[email protected] | ||
- run: cargo binstall -y [email protected] | ||
- run: cargo test --workspace --all-targets | ||
if: matrix.config.os != 'windows-latest' | ||
- run: go generate -tags=dev ./... | ||
- run: go test -tags=dev ./... | ||
- run: go test -failfast -tags=dev ./... | ||
env: | ||
GOGC: 1 | ||
WEST_LOG: trace | ||
|
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