From d3a2509fcaf250a71d8df5c543ca8ee6540c10d2 Mon Sep 17 00:00:00 2001 From: MCMrARM Date: Sat, 4 Nov 2023 14:55:09 +0100 Subject: [PATCH] Delete .circleci directory --- .circleci/config.yml | 55 -------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 755a8a0..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,55 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: buildpack-deps:xenial - steps: - - checkout - - run: - name: Install deps - command: apt-get update && apt-get install -y git cmake zip - - run: - name: Get submodules - command: git submodule update --init --recursive - - run: - name: Build - command: mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=../sdk/ .. && make && make install && cd .. - - run: - name: Pack the SDK and modloader - command: | - mkdir artifacts && cd sdk && - zip -r ../artifacts/mod_sdk.zip . && cp lib/libserver_modloader.so ../artifacts && cd .. - - persist_to_workspace: - root: artifacts/ - paths: "*" - - store_artifacts: - path: artifacts/ - destination: / - publish-github-release: - docker: - - image: cibuilds/github:0.10 - steps: - - attach_workspace: - at: ./artifacts - - run: - name: Publish GitHub release - command: | - ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} \ - -delete ${CIRCLE_TAG} ./artifacts/ - -workflows: - version: 2 - main: - jobs: - - build: - filters: - tags: - only: /.*/ - - publish-github-release: - requires: - - build - filters: - branches: - ignore: /.*/ - tags: - only: /.*/