Skip to content
Snippets Groups Projects
.gitlab-ci.yml 552 B
Newer Older
gbe's avatar
gbe committed
test:
gbe's avatar
gbe committed
  stage: test
  script:
  - go test ./...
gbe's avatar
gbe committed

gbe's avatar
gbe committed
build:
gbe's avatar
gbe committed
  stage: build
gbe's avatar
gbe committed
  - commitHash=$(git rev-parse HEAD)
  - now=$(date +%Y-%m-%d-%T)
  - GOOS=freebsd go build -trimpath -tags "netgo osusergo timetzdata" -ldflags "-X main.commitHash=$commitHash -X main.buildTime=$now" -o invinoveritas
  artifacts:
    paths:
    - invinoveritas
gbe's avatar
gbe committed

deploy:
gbe's avatar
gbe committed
  stage: deploy
gbe's avatar
gbe committed
  only:
  - main
gbe's avatar
gbe committed
  script:
  - ls -l
gbe's avatar
gbe committed
  - chmod 0600 "$DEPLOY_SSH_KEY"
gbe's avatar
gbe committed
  - pv invinoveritas | ssh -i "$DEPLOY_SSH_KEY" -p 2222 wine@wine.unobtanium.de
gbe's avatar
gbe committed
- build
- deploy