Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Commit

Permalink
github actions: second attempt
Browse files Browse the repository at this point in the history
Signed-off-by: Achille Roussel <[email protected]>
  • Loading branch information
achille-roussel committed May 27, 2023
1 parent 894f43e commit 71f785e
Showing 1 changed file with 19 additions and 21 deletions.
40 changes: 19 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,27 +54,25 @@ jobs:
# version: v1.52.2
# args: --timeout 5m

# TODO: figure out why the private access token is not working
#
# test:
# name: Go Test
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
test:
name: Go Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

# - name: Set up Go
# uses: actions/setup-go@v4
# with:
# go-version-file: go.mod
# check-latest: true
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true

# - name: Install Go tip
# run: |
# curl -sL https://storage.googleapis.com/go-build-snap/go/linux-amd64/$(git ls-remote https://github.com/golang/go.git HEAD | awk '{print $1;}').tar.gz -o gotip.tar.gz
# ls -lah gotip.tar.gz
# mkdir -p $HOME/gotip
# tar -C $HOME/gotip -xzf gotip.tar.gz
- name: Install Go tip
run: |
curl -sL https://storage.googleapis.com/go-build-snap/go/linux-amd64/$(git ls-remote https://github.com/golang/go.git HEAD | awk '{print $1;}').tar.gz -o gotip.tar.gz
ls -lah gotip.tar.gz
mkdir -p $HOME/gotip
tar -C $HOME/gotip -xzf gotip.tar.gz
# - run: git config --global url.https://[email protected] https://github.com
# - run: make testdata GO=$HOME/gotip/bin/go
# - run: make test
- run: git config --global url.https://[email protected] https://github.com
- run: make testdata GO=$HOME/gotip/bin/go
- run: make test

0 comments on commit 71f785e

Please sign in to comment.