CI #998
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: '0 2 * * 1-5' | |
env: | |
GOPROXY: "https://proxy.golang.org" | |
TAGS: "-tags=ci" | |
COVERAGE: "-coverpkg=github.com/go-python/gpython/..." | |
jobs: | |
build: | |
name: Build | |
strategy: | |
matrix: | |
go-version: [1.19.x, 1.18.x] | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Setup Git for Windows | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Cache-Go | |
uses: actions/cache@v1 | |
with: | |
# In order: | |
# * Module download cache | |
# * Build cache (Linux) | |
# * Build cache (Mac) | |
# * Build cache (Windows) | |
path: | | |
~/go/pkg/mod | |
~/.cache/go-build | |
~/Library/Caches/go-build | |
'%LocalAppData%\go-build' | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
- name: Install Linux packages | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -qq pkg-config python3 | |
- name: Build-Linux-32b | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
GOARCH=386 go install -v $TAGS ./... | |
- name: Build-Linux-64b | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
GOARCH=amd64 go install -v $TAGS ./... | |
- name: Build-Windows | |
if: matrix.platform == 'windows-latest' | |
run: | | |
go install -v $TAGS ./... | |
- name: Build-Darwin | |
if: matrix.platform == 'macos-latest' | |
run: | | |
go install -v $TAGS ./... | |
- name: Test Linux | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
GOARCH=386 go test $TAGS ./... | |
GOARCH=amd64 go run ./ci/run-tests.go $TAGS -race $COVERAGE | |
## FIXME(sbinet): bring back python3.4 or upgrade gpython to python3.x | |
## python3 py3test.py | |
- name: Test Windows | |
if: matrix.platform == 'windows-latest' | |
run: | | |
go run ./ci/run-tests.go $TAGS -race | |
- name: Test Darwin | |
if: matrix.platform == 'macos-latest' | |
run: | | |
go run ./ci/run-tests.go $TAGS -race | |
- name: static-check | |
uses: dominikh/[email protected] | |
with: | |
install-go: false | |
cache-key: ${{ matrix.platform }} | |
version: "2022.1" | |
- name: Upload-Coverage | |
if: matrix.platform == 'ubuntu-latest' | |
uses: codecov/codecov-action@v1 |