From 19311e070388e5043754b4d15b1c8cea63071072 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 12 Sep 2021 08:22:40 -0700 Subject: [PATCH 1/2] build: add daily/on-demand internet test workflow --- .github/workflows/test-internet.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/test-internet.yml diff --git a/.github/workflows/test-internet.yml b/.github/workflows/test-internet.yml new file mode 100644 index 00000000000000..1c3302fb63bb65 --- /dev/null +++ b/.github/workflows/test-internet.yml @@ -0,0 +1,26 @@ +name: test-linux + +on: + workflow_dispatch: + schedule: + - cron: "5 0 * * *" + +env: + PYTHON_VERSION: 3.9 + FLAKY_TESTS: dontcare + +jobs: + test-internet: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ env.PYTHON_VERSION }} + uses: actions/setup-python@v2 + with: + python-version: ${{ env.PYTHON_VERSION }} + - name: Environment Information + run: npx envinfo + - name: Build + run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn" + - name: Test Internet + run: make test-internet -j2 V=1; From 22cb29f21811e2adc381b30fdf1a5f83d7d7f61a Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 12 Sep 2021 08:25:58 -0700 Subject: [PATCH 2/2] fixup! build: add daily/on-demand internet test workflow --- .github/workflows/test-internet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-internet.yml b/.github/workflows/test-internet.yml index 1c3302fb63bb65..0a78842ad9550c 100644 --- a/.github/workflows/test-internet.yml +++ b/.github/workflows/test-internet.yml @@ -1,4 +1,4 @@ -name: test-linux +name: test-internet on: workflow_dispatch: