Browse Source

try manual artifacts upload as artifacts does not work, and moreover I want them outside of gitlab anyway

1.0.2
Georg Hopp 10 years ago
parent
commit
e855694a9f
  1. 7
      .gitlab-ci.yml

7
.gitlab-ci.yml

@ -16,11 +16,12 @@ test:
stage: test stage: test
script: script:
- make coverage-html - make coverage-html
- ssh ci_upload@192.168.20.60 install -d trbase
- rsync -vaurl --delete tests/coverage ci_upload@192.168.20.60:~/trbase/
dist: dist:
stage: deploy stage: deploy
artifacts:
paths:
- libtrbase-*.tar.gz
script: script:
- make dist - make dist
- ssh ci_upload@192.168.20.60 install -d trbase/artifacts
- scp libtrbase-*.tar.gz ci_upload@192.168.20.60:~/trbase/artifacts
Loading…
Cancel
Save