This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run actions/setup-go after checking out complement (#16567)
- Loading branch information
David Robertson
authored
Oct 30, 2023
1 parent
8c63e93
commit 4e1a19d
Showing
4 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -633,11 +633,14 @@ jobs: | |
uses: dtolnay/[email protected] | ||
- uses: Swatinem/rust-cache@v2 | ||
|
||
- uses: actions/setup-go@v4 | ||
|
||
- name: Prepare Complement's Prerequisites | ||
run: synapse/.ci/scripts/setup_complement_prerequisites.sh | ||
|
||
- uses: actions/setup-go@v4 | ||
with: | ||
cache-dependency-path: complement/go.sum | ||
go-version-file: complement/go.mod | ||
|
||
# use p=1 concurrency as GHA boxes are underpowered and don't like running tons of synapses at once. | ||
- run: | | ||
set -o pipefail | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Deal with warnings from running complement in CI. |