fix(CDEPS/tor): allow compiling under ArchLinux #74
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
# Ensures that ./script/go.bash works as intended with many versions of "go". | |
# | |
# See https://github.com/ooni/probe/issues/2664. | |
name: gobash | |
on: | |
push: | |
branches: | |
- "release/**" | |
- "fullbuild" | |
- "gofixpathbuild" | |
- "master" | |
tags: | |
- "v*" | |
pull_request: | |
schedule: | |
- cron: "17 7 * * *" | |
jobs: | |
build_with_specific_go_version: | |
strategy: | |
matrix: | |
goversion: | |
- "1.15" # debian 11 "bullseye" | |
- "1.16" | |
- "1.17" | |
- "1.18" # ubuntu 22.04 LTS | |
- "1.19" # debian 12 "bookworm" | |
- "1.20" | |
- "1.21" | |
system: [ubuntu-latest, macos-latest] | |
runs-on: "${{ matrix.system }}" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "${{ matrix.goversion }}" | |
- run: ./script/go.bash run ./internal/cmd/buildtool generic miniooni |