X-Git-Url: https://git.r.bdr.sh/rbdr/lyricli/blobdiff_plain/3f7a07b8b9c62994fce87e37fd2f67b683cb6c58..4adf8d5182b7ad3720e3160e0f4530547625dbce:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2fa5994..04ec6ba 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,44 +1,14 @@ -image: swift:5.0.1 +image: lyriclitest/swift:5.0.1 stages: - lint - - build - - document - - deploy cache: key: ${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHA} paths: - .build/ -before_script: - - apt install -y ruby ruby-dev libsqlite3-dev - - gem install jazzy - - "./Scripts/install_sourcekitten.sh" - - "./Scripts/install_swiftlint.sh" - lint: stage: lint script: - make lint - -build: - stage: build - script: - - make build - -document: - stage: document - script: - - make document - artifacts: - paths: - - docs - -pages: - stage: deploy - script: - - mv docs public - artifacts: - paths: - - public