From ab89789e3e7fc47f7a734548393818dacd57e59c Mon Sep 17 00:00:00 2001 From: William Petit Date: Wed, 23 Aug 2023 15:53:40 -0600 Subject: [PATCH] ci: disable build and release stages --- Jenkinsfile | 5 ++++- Makefile | 4 ---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4c74bd0..bf1fead 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,3 +1,6 @@ @Library("cadoles") _ -standardMakePipeline() \ No newline at end of file +standardMakePipeline([ + 'buildTask': null, + 'releaseTask': null +]) \ No newline at end of file diff --git a/Makefile b/Makefile index 9179f87..269c185 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,6 @@ all: test build test: tools/checkmake/bin/checkmake tools/checkmake/bin/checkmake Makefile -.PHONY: build -build: - MKT_GITEA_RELEASE_ORG ?= Cadoles MKT_GITEA_RELEASE_PROJECT ?= mktools @@ -21,7 +18,6 @@ release: MKT_GITEA_RELEASE_COMMIT_TARGET="$(MKT_PROJECT_VERSION)" \ mkt-gitea-release - .PHONY: clean clean: rm -rf tools