Skip to content
Snippets Groups Projects

Merging final pip in main

Closed Isabelle Josephine Karal requested to merge s91190/app-service:stable into main
1 file
+ 4
2
Compare changes
  • Side-by-side
  • Inline
+ 4
2
@@ -19,14 +19,16 @@ job_build:
@@ -19,14 +19,16 @@ job_build:
rules:
rules:
- if: $CI_COMMIT_REF_NAME =~ /stable/ #https://docs.gitlab.com/ee/ci/yaml/workflow.html
- if: $CI_COMMIT_REF_NAME =~ /stable/ #https://docs.gitlab.com/ee/ci/yaml/workflow.html
when: always
when: always
 
before_script:
 
- mkdir -p ./artifacts
script:
script:
- apk add go
- apk add go
- go get -t ./...
- go get -t ./...
- CGO_ENABLED=0
- CGO_ENABLED=0
- go build -o ./artifact/webservice ./*.go
- go build -o ./artifacts/webservice ./*.go
artifacts:
artifacts:
paths:
paths:
- ./artifact.bin
- ./artifacts
job_test:
job_test:
Loading