Commit 935170a1 authored by Chunchi Che's avatar Chunchi Che

fix gitlab-ci.yml

parent 54d86baf
Pipeline #17191 failed with stages
in 1 minute and 1 second
stages:
- setup
- test
- build
- deploy
go_setup:
stage: setup
tags:
- linux
script:
- wget https://go.dev/dl/go1.17.6.linux-amd64.tar.gz
- tar -xzf go1.17.6.linux-amd64.tar.gz
- export PATH=$PATH:$(pwd)/go/bin
- go version
go_test:
stage: test
tags:
- linux
script: go test
dependencies:
- go_setup
go_build:
stage: build
tags:
- linux
script: go build
dependencies:
- go_setup
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment