Skip to content

Commit

Permalink
fix(qa): use correct golang version
Browse files Browse the repository at this point in the history
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
bassosimone committed Sep 7, 2022
1 parent 1fc6bab commit a222bfe
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 71 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/qa.yml
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"
14 changes: 0 additions & 14 deletions .github/workflows/qafbmessenger.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/qahhfm.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/qahirl.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/qatelegram.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/qawebconnectivity.yml

This file was deleted.

2 changes: 1 addition & 1 deletion QA/Dockerfile
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

0 comments on commit a222bfe

Please sign in to comment.