Skip to content

Commit

Permalink
Update gcloud used in Go CI tests (#292)
Browse files Browse the repository at this point in the history
gcloud 307 fails with `gcloud failed to load: module 'collections' has no attribute 'MutableMapping'`, which is an incompatibility with Python 3.10.6 currently shipping with ubuntu-latest image (https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md).
  • Loading branch information
kynan authored Apr 20, 2023
1 parent 52e9424 commit a4096de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/go-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Set up gcloud datastore emulator
# JRE is needed for the datastore emulator
run: |
curl https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-307.0.0-linux-x86_64.tar.gz | tar xfz - -C $HOME
curl https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-cli-427.0.0-linux-x86_64.tar.gz | tar xfz - -C $HOME
$HOME/google-cloud-sdk/bin/gcloud components install beta cloud-datastore-emulator
sudo apt-get update
sudo apt-get install openjdk-8-jre-headless
Expand Down

0 comments on commit a4096de

Please sign in to comment.