-
-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: upgrade pact-ruby-standalone to 2.0.3
- Supports ARM64 MacOS / Linux - Drops support for 32bit Linux - Adds support for 32bit / 64bt Windows - Add CI tests for ARM64 MacOS / Linux
- Loading branch information
Showing
7 changed files
with
62 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
test_task_template: &TEST_TASK_TEMPLATE | ||
modules_cache: | ||
fingerprint_script: cat go.sum | ||
folder: $GOPATH/pkg/mod | ||
deps_script: make deps | ||
clean_script: make clean | ||
bin_script: make bin | ||
test_script: make test | ||
|
||
linux_test_task: | ||
env: | ||
matrix: | ||
- VERSION: 1.17 | ||
- VERSION: 1.18 | ||
name: Tests (Go $VERSION) | ||
container: | ||
image: golang:$VERSION | ||
<<: *TEST_TASK_TEMPLATE | ||
|
||
linux_arm64_test_task: | ||
env: | ||
matrix: | ||
- VERSION: 1.17 | ||
- VERSION: 1.18 | ||
name: Tests (Go $VERSION) | ||
arm_container: | ||
image: golang:$VERSION | ||
<<: *TEST_TASK_TEMPLATE | ||
|
||
macos_arm64_test_task: | ||
macos_instance: | ||
image: ghcr.io/cirruslabs/macos-ventura-base:latest | ||
pre_req_script: brew install gox | ||
<<: *TEST_TASK_TEMPLATE | ||
|
||
lint_task: | ||
name: GolangCI Lint | ||
container: | ||
image: golangci/golangci-lint:latest | ||
run_script: golangci-lint run -v --out-format json > lint-report.json | ||
always: | ||
golangci_artifacts: | ||
path: lint-report.json | ||
type: text/json | ||
format: golangci |
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
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
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