From e96abc3c5a21928d9a7fa74df1fcf93bf6c52b17 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Tue, 21 Sep 2021 21:01:45 -0700 Subject: [PATCH] ci: Remove legacy-os test. As of yesterday, the GitHub Actions ubuntu-16.04 environment has been removed. Signed-off-by: Anders Kaseorg --- .github/workflows/legacy-os.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/legacy-os.yml diff --git a/.github/workflows/legacy-os.yml b/.github/workflows/legacy-os.yml deleted file mode 100644 index 939d1eac05..0000000000 --- a/.github/workflows/legacy-os.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Legacy OS - -on: [push, pull_request] - -jobs: - xenial: - name: Ubuntu 16.04 Xenial (Python 3.5, legacy) - runs-on: ubuntu-16.04 - steps: - - uses: actions/checkout@v2 - - name: Check tools/provision error message on xenial - run: | - { { ! tools/provision 2>&1 >&3; } | tee provision.err; } 3>&1 >&2 - grep -Fqx 'Error: ubuntu 16.04 is no longer a supported platform for Zulip.' provision.err - - name: Check scripts/lib/upgrade-zulip-stage-2 error message on xenial - run: | - { { ! sudo scripts/lib/upgrade-zulip-stage-2 2>&1 >&3; } | tee upgrade.err; } 3>&1 >&2 - grep -Fq 'upgrade-zulip-stage-2: Unsupported platform: ubuntu 16.04' upgrade.err - - - name: Report status - if: failure() - env: - ZULIP_BOT_KEY: ${{ secrets.ZULIP_BOT_KEY }} - run: tools/ci/send-failure-message