Skip to content

Commit

Permalink
Use setup-go instead of relying on go 1.17 to exist (matrix-org#15403)
Browse files Browse the repository at this point in the history
* Use setup-go instead of relying on 1.17 to exist

See actions/runner-images#7276

* Changelog
  • Loading branch information
David Robertson authored and realtyem committed Apr 12, 2023
1 parent 4550c86 commit 5e241f2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .ci/scripts/setup_complement_prerequisites.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,6 @@ set -eu
alias block='{ set +x; } 2>/dev/null; func() { echo "::group::$*"; set -x; }; func'
alias endblock='{ set +x; } 2>/dev/null; func() { echo "::endgroup::"; set -x; }; func'

block Set Go Version
# The path is set via a file given by $GITHUB_PATH. We need both Go 1.17 and GOPATH on the path to run Complement.
# See https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#adding-a-system-path

# Add Go 1.17 to the PATH: see https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-Readme.md#environment-variables-2
echo "$GOROOT_1_17_X64/bin" >> $GITHUB_PATH
# Add the Go path to the PATH: We need this so we can call gotestfmt
echo "~/go/bin" >> $GITHUB_PATH
endblock

block Install Complement Dependencies
sudo apt-get -qq update && sudo apt-get install -qqy libolm3 libolm-dev
go install -v github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/latest_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@ jobs:
with:
path: synapse

- uses: actions/setup-go@v4

- name: Prepare Complement's Prerequisites
run: synapse/.ci/scripts/setup_complement_prerequisites.sh

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,8 @@ jobs:
toolchain: 1.58.1
- uses: Swatinem/rust-cache@v2

- uses: actions/setup-go@v4

- name: Prepare Complement's Prerequisites
run: synapse/.ci/scripts/setup_complement_prerequisites.sh

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/twisted_trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ jobs:
with:
path: synapse

- uses: actions/setup-go@v4

- name: Prepare Complement's Prerequisites
run: synapse/.ci/scripts/setup_complement_prerequisites.sh

Expand Down
1 change: 1 addition & 0 deletions changelog.d/15403.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update CI to run complement under the latest stable go version.

0 comments on commit 5e241f2

Please sign in to comment.