master: update deps and set version to 3.12.0-alpha (#548)
* chore: update all workflows to use go1.17.2 See https://github.com/ooni/probe/issues/1815 * chore: update all dependencies See https://github.com/ooni/probe/issues/1815 * chore: run `go generate` See https://github.com/ooni/probe/issues/1815 * chore: update the user-agent Part of https://github.com/ooni/probe/issues/1815 * Set version to 3.12.0-alpha Part of https://github.com/ooni/probe/issues/1815 * fix: update to ooni/probe-assets@v0.5.0 This overcomes https://github.com/ooni/probe/issues/1836 in the CLI and, while there, let us also make maxminddb tests stricter. * fix(QA/Dockerfile): build using go1.17 See https://github.com/ooni/probe-cli/pull/547#issuecomment-947760839 * chore(mk): use go1.17.2 Part of https://github.com/ooni/probe/issues/1815 * fix(codeql): always run for master Otherwise we see a warning that there is no CodeQL information available for the base branch and this is sub-optimal. Part of https://github.com/ooni/probe/issues/1815
This commit is contained in:
parent
2fa87f0e00
commit
d44970a43f
53 changed files with 232 additions and 173 deletions
2
.github/workflows/alltests.yml
vendored
2
.github/workflows/alltests.yml
vendored
|
|
@ -10,6 +10,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: go test -race -tags shaping ./...
|
||||
|
|
|
|||
2
.github/workflows/android.yml
vendored
2
.github/workflows/android.yml
vendored
|
|
@ -10,6 +10,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16.4"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: ./mk OONI_PSIPHON_TAGS="" ./MOBILE/android/oonimkall.aar
|
||||
|
|
|
|||
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
|
|
@ -9,7 +9,7 @@ name: "CodeQL"
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [ "release/**" ]
|
||||
branches: [ "master", "release/**" ]
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
|
|
|
|||
2
.github/workflows/coverage.yml
vendored
2
.github/workflows/coverage.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
|||
runs-on: ubuntu-20.04
|
||||
strategy:
|
||||
matrix:
|
||||
go: [ "1.17.1" ]
|
||||
go: [ "1.17.2" ]
|
||||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
|
|
|
|||
2
.github/workflows/generate.yml
vendored
2
.github/workflows/generate.yml
vendored
|
|
@ -10,6 +10,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: go generate ./...
|
||||
|
|
|
|||
2
.github/workflows/ios.yml
vendored
2
.github/workflows/ios.yml
vendored
|
|
@ -10,6 +10,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16.4"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: ./mk OONI_PSIPHON_TAGS="" XCODE_VERSION=12.4 ./MOBILE/ios/oonimkall.framework.zip
|
||||
|
|
|
|||
2
.github/workflows/jafar.yml
vendored
2
.github/workflows/jafar.yml
vendored
|
|
@ -9,7 +9,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: go build -v ./internal/cmd/jafar
|
||||
- run: sudo ./testjafar.bash
|
||||
|
|
|
|||
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16.4"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: ./mk OONI_PSIPHON_TAGS="" ./CLI/darwin/amd64/ooniprobe
|
||||
- run: ./E2E/ooniprobe.sh ./CLI/darwin/amd64/ooniprobe
|
||||
|
|
|
|||
2
.github/workflows/miniooni.yml
vendored
2
.github/workflows/miniooni.yml
vendored
|
|
@ -12,7 +12,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16.4"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: ./mk OONI_PSIPHON_TAGS="" ./CLI/miniooni
|
||||
|
||||
|
|
|
|||
2
.github/workflows/netxlite.yml
vendored
2
.github/workflows/netxlite.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
|||
runs-on: "${{ matrix.os }}"
|
||||
strategy:
|
||||
matrix:
|
||||
go: [ "1.17.1" ]
|
||||
go: [ "1.17.2" ]
|
||||
os: [ "ubuntu-20.04", "windows-2019", "macos-10.15" ]
|
||||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
|
|
|
|||
2
.github/workflows/oohelperd.yml
vendored
2
.github/workflows/oohelperd.yml
vendored
|
|
@ -12,7 +12,7 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16.4"
|
||||
go-version: "1.17.2"
|
||||
|
||||
- name: build oohelperd binary
|
||||
run: GOOS=linux GOARCH=amd64 go build -v ./internal/cmd/oohelperd
|
||||
|
|
|
|||
2
.github/workflows/qafbmessenger.yml
vendored
2
.github/workflows/qafbmessenger.yml
vendored
|
|
@ -10,6 +10,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: ./QA/rundocker.bash "fbmessenger"
|
||||
|
|
|
|||
2
.github/workflows/qahhfm.yml
vendored
2
.github/workflows/qahhfm.yml
vendored
|
|
@ -10,6 +10,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: ./QA/rundocker.bash "hhfm"
|
||||
|
|
|
|||
2
.github/workflows/qahirl.yml
vendored
2
.github/workflows/qahirl.yml
vendored
|
|
@ -10,6 +10,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: ./QA/rundocker.bash "hirl"
|
||||
|
|
|
|||
2
.github/workflows/qatelegram.yml
vendored
2
.github/workflows/qatelegram.yml
vendored
|
|
@ -10,6 +10,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: ./QA/rundocker.bash "telegram"
|
||||
|
|
|
|||
2
.github/workflows/qawebconnectivity.yml
vendored
2
.github/workflows/qawebconnectivity.yml
vendored
|
|
@ -10,6 +10,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: ./QA/rundocker.bash "webconnectivity"
|
||||
|
|
|
|||
2
.github/workflows/qawhatsapp.yml
vendored
2
.github/workflows/qawhatsapp.yml
vendored
|
|
@ -10,6 +10,6 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: ./QA/rundocker.bash "whatsapp"
|
||||
|
|
|
|||
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: "1.16.4"
|
||||
go-version: "1.17.2"
|
||||
- uses: actions/checkout@v2
|
||||
- run: sudo apt install mingw-w64
|
||||
- run: ./mk OONI_PSIPHON_TAGS="" MINGW_W64_VERSION="9.3-win32" ./CLI/windows/amd64/ooniprobe.exe
|
||||
|
|
|
|||
Loading…
Reference in a new issue