feat: adapts to Android 14 #748
Workflow file for this run
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
name: Tests | |
on: [push, pull_request] | |
jobs: | |
test-linux: | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
- linux-amd64-unit-test-1-cpu | |
- linux-amd64-unit-test-2-cpu | |
- linux-amd64-unit-test-4-cpu | |
- linux-amd64-unit-test-4-cpu-race | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21.1" | |
- run: make fmt | |
- env: | |
TARGET: ${{ matrix.target }} | |
run: | | |
case "${TARGET}" in | |
linux-amd64-unit-test-1-cpu) | |
CPU=1 make test | |
;; | |
linux-amd64-unit-test-2-cpu) | |
CPU=2 make test | |
;; | |
linux-amd64-unit-test-4-cpu) | |
CPU=4 make test | |
;; | |
linux-amd64-unit-test-4-cpu-race) | |
# XXX: By default, the Github Action runner will terminate the process | |
# if it has high resource usage. Try to use GOGC to limit memory and | |
# cpu usage here to prevent unexpected terminating. It can be replaced | |
# with GOMEMLIMIT=2048MiB if the go-version is updated to >=1.19.x. | |
# | |
# REF: https://github.com/actions/runner-images/issues/6680#issuecomment-1335778010 | |
GOGC=30 CPU=4 ENABLE_RACE=true make test | |
;; | |
*) | |
echo "Failed to find target" | |
exit 1 | |
;; | |
esac | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0 | |
test-windows: | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
- windows-amd64-unit-test-4-cpu | |
# FIXME(fuweid): | |
# | |
# The windows will throws the following error when enable race. | |
# We skip it until we have solution. | |
# | |
# ThreadSanitizer failed to allocate 0x000200000000 (8589934592) bytes at 0x0400c0000000 (error code: 1455) | |
# | |
#- windows-amd64-unit-test-4-cpu-race | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21.1" | |
- run: make fmt | |
- env: | |
TARGET: ${{ matrix.target }} | |
run: | | |
case "${TARGET}" in | |
windows-amd64-unit-test-4-cpu) | |
CPU=4 make test | |
;; | |
*) | |
echo "Failed to find target" | |
exit 1 | |
;; | |
esac | |
shell: bash | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0 | |
coverage: | |
needs: ["test-linux", "test-windows"] | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21.1" | |
- run: make coverage | |