Skip to content

Commit

Permalink
ci: fix up Yaml error in specifying constraint on generate step
Browse files Browse the repository at this point in the history
Failed to quote the expression. Roll on the day we replace this with
CUE!

Again, the trybot test for this will fail because the workflow file at
master on GitHub is broken. But once this CL is merged, all subsequent
builds should pass.

Change-Id: Ie3b1500f64b783bf7f2e316c1cc12961a881117c
Reviewed-on: https://cue-review.googlesource.com/c/cue/+/6066
Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>
  • Loading branch information
myitcv authored and mpvl committed May 15, 2020
1 parent 063fa12 commit 99f4ce0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Generate
# The Go version corresponds to the precise 1.14.x version specified in
# the matrix. Skip windows for now until we work out why re-gen is flaky
if: matrix.go-version == "1.14.3" && matrix.platform != "windows-latest"
if: "matrix.go-version == '1.14.3' && matrix.platform != 'windows-latest'"
run: go generate ./...

- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Generate
# The Go version corresponds to the precise 1.14.x version specified in
# the matrix. Skip windows for now until we work out why re-gen is flaky
if: matrix.go-version == "1.14.3" && matrix.platform != "windows-latest"
if: "matrix.go-version == '1.14.3' && matrix.platform != 'windows-latest'"
run: go generate ./...

- name: Test
Expand Down

0 comments on commit 99f4ce0

Please sign in to comment.