interp: fix issue where a var is reused instead of redefined #1003
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: Build Cross OS | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
cross: | |
name: Go | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ${{ github.workspace }}/go/src/github.com/traefik/yaegi | |
strategy: | |
matrix: | |
go-version: [ 1.19, '1.20' ] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
include: | |
- os: ubuntu-latest | |
go-path-suffix: /go | |
- os: macos-latest | |
go-path-suffix: /go | |
- os: windows-latest | |
go-path-suffix: \go | |
steps: | |
# https://github.com/marketplace/actions/setup-go-environment | |
- name: Set up Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go-version }} | |
stable: true | |
# https://github.com/marketplace/actions/checkout | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
path: go/src/github.com/traefik/yaegi | |
# https://github.com/marketplace/actions/cache | |
- name: Cache Go modules | |
uses: actions/cache@v3 | |
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 }}-${{ matrix.go-version }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.go-version }}-go- | |
- name: Setup GOPATH | |
run: go env -w GOPATH=${{ github.workspace }}${{ matrix.go-path-suffix }} | |
# TODO fail on windows | |
# - name: Tests | |
# run: go test -v -cover ./... | |
# env: | |
# GOPATH: ${{ github.workspace }}${{ matrix.go-path }} | |
- name: Build | |
run: go build -race -v -ldflags "-s -w" -trimpath |