I can't build / document currently
stages:
- lint
- - document
- - deploy
cache:
key: ${CI_COMMIT_REF_SLUG}-${CI_COMMIT_SHA}
default: build
-prebuild:
- mkdir -p $(build_path)
-
-build: prebuild
+build:
swift build --build-path $(build_path) --configuration $(configuration)
install: 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 \