Skip to content
Snippets Groups Projects

Port existing CI configuration

Merged Erick Hitter requested to merge add/gitlab-ci-yml into main
7 files
+ 69
0
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 10
0
 
before_script:
 
- curl -o "${CI_PROJECT_DIR}/Makefile" https://git-cdn.e15r.co/gitlab/ci/golang/-/raw/main/files/Makefile
 
- mkdir -p $GOPATH/src/$(dirname $REPO_NAME)
 
- cp -R $CI_PROJECT_DIR $GOPATH/src/$REPO_NAME
 
- cd $GOPATH/src/$REPO_NAME
 
- cp config-sample.json config.json
 
 
- export CC=clang
 
 
- make dep
Loading