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

Commit

Permalink
disable the jobs for now
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 c1ab8a4 commit df19292
Showing 1 changed file with 42 additions and 36 deletions.
78 changes: 42 additions & 36 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

env:
GOPRIVATE: github.com/stealthrocket
GH_ACCESS_TOKEN: ${{ secrets.PAT }}
GH_ACCESS_TOKEN: ${{ secrets.PRIVATE_ACCESS_TOKEN }}

jobs:
spellcheck:
Expand All @@ -31,44 +31,50 @@ jobs:
files: '*.go'
write_changes: true

golangci-lint:
name: Go Lint
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
# TODO: golangci-lint does not work well with the dot-import of wasi-go,
# it fails to find the symbols; maybe related to not being able to download
# private dependencies?
#
# golangci-lint:
# name: Go Lint
# runs-on: ubuntu-latest
# timeout-minutes: 30
# 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: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.52.2
args: --timeout 5m
# - name: golangci-lint
# uses: golangci/golangci-lint-action@v3
# with:
# version: v1.52.2
# args: --timeout 5m

test:
name: Go Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# TODO: figure out why the private access token is not working
#
# 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 df19292

Please sign in to comment.