CI: comment out test-gotip for now (#157)

Since it's been failing for weeks, it's practically useless for now.
Even with continue-on-error, the failures still look scary at first
glance.

We can re-enable this job once we fix master.
pull/158/head
Daniel Martí 5 years ago committed by GitHub
parent b823b07443
commit 29378787e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,23 +25,24 @@ jobs:
go version go version
go test ./... go test ./...
test-gotip: # TODO: re-enable once we get Go master/tip working again
runs-on: ubuntu-latest #test-gotip:
continue-on-error: true # master breaks sometimes # runs-on: ubuntu-latest
steps: # continue-on-error: true # master breaks sometimes
- name: Install Go # steps:
run: | # - name: Install Go
git clone --depth=1 https://go.googlesource.com/go $HOME/gotip # run: |
cd $HOME/gotip/src # git clone --depth=1 https://go.googlesource.com/go $HOME/gotip
./make.bash # cd $HOME/gotip/src
echo "::set-env name=GOROOT::$HOME/gotip" # ./make.bash
echo "::add-path::$HOME/gotip/bin" # echo "::set-env name=GOROOT::$HOME/gotip"
- name: Checkout code # echo "::add-path::$HOME/gotip/bin"
uses: actions/checkout@v2 # - name: Checkout code
- name: Test # uses: actions/checkout@v2
run: | # - name: Test
go version # run: |
go test ./... # go version
# go test ./...
code-checks: code-checks:
runs-on: ubuntu-latest runs-on: ubuntu-latest

Loading…
Cancel
Save