From 1c651f5b8d5ed8cabf2820d3e892a12aa7ed91df Mon Sep 17 00:00:00 2001 From: Jakob Meier Date: Wed, 5 Oct 2022 20:05:55 +0200 Subject: [PATCH] Removed gitlab CI turns out gitlab disabled the CI for free-tier users technically an organisation is able to use it, but I think this would be considered abuse --- .gitlab-ci.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 649b89e..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,28 +0,0 @@ -# To contribute improvements to CI/CD templates, please follow the Development guide at: -# https://docs.gitlab.com/ee/development/cicd/templates.html -# This specific template is located at: -# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/npm.gitlab-ci.yml - -publish: - image: alpine:latest - stage: deploy - tags: - - amd64 - rules: - - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_REF_NAME =~ /^v\d+\.\d+\.\d+.*$/ - script: - # install dependencies - - apk add curl apk-tools abuild - # fetch secure files from gitlab secrets - - export SECURE_FILES_DOWNLOAD_PATH ~/.abuild - - curl -s https://gitlab.com/gitlab-org/incubation-engineering/mobile-devops/load-secure-files/-/raw/main/installer | bash - - load-secure-files - # TODO fetch the source - - git clone https://codeberg.org/comcloudway/ccw-aports - - cd ccw-aports - # build every package in repo - - ./build.sh all - # TODO upload buildoutput - artifacts: - paths: - - ~/packages/ccw-aports -- 2.38.5