]> git.r.bdr.sh - rbdr/lyricli/commitdiff
Removing gitlab CI config
authorBen Beltran <redacted>
Tue, 10 Mar 2020 02:52:28 +0000 (21:52 -0500)
committerBen Beltran <redacted>
Tue, 10 Mar 2020 02:52:28 +0000 (21:52 -0500)
I can't build / document currently

.gitlab-ci.yml
Makefile

index 225ceac6d542c5f125c7183f7b1cbae65eca63dc..56fa677eee99383c2be83c3a357ae4b5717efe6c 100644 (file)
@@ -2,8 +2,6 @@ image: lyriclitest/swift:5.0.1
 
 stages:
   - lint
-  - document
-  - deploy
 
 cache:
   key: ${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHA}
index d2449967d4ae1d0b1e2766e30a58350ec6af638f..8428b44460bdc9b1a236e01acf397dfb05da0c07 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -14,10 +14,7 @@ install: configuration = release
 
 default: build
 
-prebuild:
-       mkdir -p $(build_path)
-
-build: prebuild
+build:
        swift build --build-path $(build_path) --configuration $(configuration)
 
 install: build
@@ -29,7 +26,7 @@ test: build
 lint:
        cd Sources && swiftlint
 
-document: prebuild
+document: build
        sourcekitten doc --spm-module $(source_binary_name) > $(build_path)/$(source_binary_name).json
        jazzy \
                -s $(build_path)/$(source_binary_name).json \