Browse Source

Add CI control file

1.0.0 v1.0.0
Georg Hopp 10 years ago
parent
commit
85c3ad0f89
  1. 27
      .gitlab-ci.yml

27
.gitlab-ci.yml

@ -0,0 +1,27 @@
stages:
- build
- test
- deploy
before_script:
- ./bootstrap
- ./configure
build:
stage: build
script:
- make
# test:
# stage: test
# script:
# - make test
dist:
stage: deploy
only:
- tags
script:
- make dist
- ssh ci_upload@192.168.20.60 install -d trevent/artifacts
- scp libtrevent-*.tar.gz ci_upload@192.168.20.60:~/trevent/artifacts
Loading…
Cancel
Save