aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2020-03-09 21:52:28 -0500
committerBen Beltran <ben@nsovocal.com>2020-03-09 21:52:28 -0500
commit2a7cc52436ab4a7b6530881513679ac7ede997a8 (patch)
tree9250ceff5be6dfb66e2d7a29016732682c106d3a
parent97f47198a0dd96c571ec1086e7f8c68963d263d0 (diff)
Removing gitlab CI config
I can't build / document currently
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--Makefile7
2 files changed, 2 insertions, 7 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 225ceac..56fa677 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,8 +2,6 @@ image: lyriclitest/swift:5.0.1
stages:
- lint
- - document
- - deploy
cache:
key: ${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHA}
diff --git a/Makefile b/Makefile
index d244996..8428b44 100644
--- 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 \