diff options
author | zeripath | 2022-10-06 21:51:18 +0100 |
---|---|---|
committer | GitHub | 2022-10-06 21:51:18 +0100 |
commit | 64073276c444c875afe0176c3cf1429ce2a24716 (patch) | |
tree | 035d39db5516f0c50595ec4f0699680afbe304b0 /.drone.yml | |
parent | 2d3b52c24458df9ac0986546810e54aa36c2d196 (diff) |
Update go to 1.19 (#21361)
It appears that updating go to 1.19 for playwright was missed when we
updated to go 1.19 elsewhere.
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index 95d403241..59cc4d8f7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -573,7 +573,7 @@ steps: - name: test-e2e image: mcr.microsoft.com/playwright:v1.24.0-focal commands: - - curl -sLO https://go.dev/dl/go1.18.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.18.linux-amd64.tar.gz + - curl -sLO https://go.dev/dl/go1.19.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.19.linux-amd64.tar.gz - groupadd --gid 1001 gitea && useradd -m --gid 1001 --uid 1001 gitea - apt-get -qq update && apt-get -qqy install build-essential - export TEST_PGSQL_SCHEMA='' |