WIP fix: handle assignments to dereferenced pointer values #2713
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: gno.land | |
on: | |
pull_request: | |
paths: | |
- "go.sum" | |
- "gnovm/**.go" | |
- "gnovm/**.gno" | |
- "tm2/**.go" | |
- "gno.land/**" | |
- ".github/workflows/gnovm.yml" | |
# Until the codecov issue is resolved, it's essential to run the tests for gnovm, tm2, and gno.land concurrently. | |
- "gnovm/**" | |
- "tm2/**" | |
- "gno.land/**" | |
- "examples/**" | |
- ".github/workflows/**" | |
push: | |
branches: [ "master" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
goversion: | |
- "1.20.x" | |
- "1.21.x" | |
goarch: [ "amd64" ] | |
goos: [ "linux" ] | |
program: | |
- gnoland | |
- gnokey | |
- gnoweb | |
- gnofaucet | |
- gnotxsync | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.goversion }} | |
- name: go install | |
working-directory: gno.land | |
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go install ./cmd/${{ matrix.program }} | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
goversion: | |
- "1.20.x" | |
- "1.21.x" | |
args: | |
- _test.gnoland | |
- _test.gnokey | |
- _test.pkgs | |
- _test.gnoweb | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.goversion }} | |
- name: test | |
working-directory: gno.land | |
run: | | |
export GOPATH=$HOME/go | |
export GOTEST_FLAGS="-v -p 1 -timeout=30m -coverprofile=coverage.out -covermode=atomic" | |
export LOG_DIR="${{ runner.temp }}/logs/test-${{ matrix.goversion }}-gnoland" | |
make ${{ matrix.args }} | |
- name: Upload Test Log | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: logs-test-gnoland-go${{ matrix.goversion }} | |
path: ${{ runner.temp }}/logs/**/*.log | |
- uses: actions/upload-artifact@v3 | |
if: ${{ runner.os == 'Linux' && matrix.goversion == '1.21.x' }} | |
with: | |
name: ${{runner.os}}-coverage-gnoland-${{ matrix.args}}-${{matrix.goversion}} | |
path: ./gno.land/coverage.out | |
upload-coverage: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download all previous coverage artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
path: ${{ runner.temp }}/coverage | |
- name: Upload combined coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
directory: ${{ runner.temp }}/coverage | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: ${{ github.repository == 'gnolang/gno' }} | |
docker-integration: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
# TODO: setup docker caching | |
- run: make test.docker | |
- run: docker logs int_gnoland || true | |
# TODO: docker-less integration test? |