Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
qtbeee committed Nov 7, 2019
1 parent f77ae28 commit cc48cd5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
image: swift:5.1.1

before_script:
- RUN apt-get update && \
apt-get -y install python3 libsodium-dev openssl libssl-dev libzip-dev

stages:
- test

# Master
test:
stage: test
script:
- swift build
only:
- master

# Merge requests
test:
stage: test
script:
- swift build
- swift test
only:
- merge_requests

0 comments on commit cc48cd5

Please sign in to comment.