-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It would be better to determine the version we should be using automatically, and maybe we'll do that soon. It was not documented why there was an individual YAML file for each experiment, so I consolidated all of them. Part of ooni/probe#2130
- Loading branch information
1 parent
1fc6bab
commit a222bfe
Showing
7 changed files
with
46 additions
and
71 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Runs quality assurance checks for the all experiments | ||
name: "qa" | ||
on: | ||
push: | ||
branches: | ||
- "release/**" | ||
- "fullbuild" | ||
- "qubuild" | ||
|
||
jobs: | ||
test_fbmessenger: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: ./QA/rundocker.bash "fbmessenger" | ||
|
||
test_hhfm: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: ./QA/rundocker.bash "hhfm" | ||
|
||
test_hirl: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: ./QA/rundocker.bash "hirl" | ||
|
||
test_telegram: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: ./QA/rundocker.bash "telegram" | ||
|
||
test_webconnectivity: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: ./QA/rundocker.bash "webconnectivity" | ||
|
||
test_whatsapp: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: ./QA/rundocker.bash "whatsapp" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
FROM golang:1.17-alpine | ||
FROM golang:1.18-alpine | ||
RUN apk add go git musl-dev iptables tmux bind-tools curl sudo python3 |