From 987677c99fdb774c3029afcfb5286c58160f0ddd Mon Sep 17 00:00:00 2001 From: DvirDukhan Date: Thu, 5 Sep 2024 10:06:42 +0300 Subject: [PATCH] Delete .circleci directory --- .circleci/config.yml | 50 -------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 328b3b5..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,50 +0,0 @@ -# Golang CircleCI 2.0 configuration file -# -# Check https://circleci.com/docs/2.0/language-go/ for more details -version: 2.1 -commands: - early_return_for_forked_pull_requests: - description: >- - If this build is from a fork, stop executing the current job and return success. - This is useful to avoid steps that will fail due to missing credentials. - steps: - - run: - name: Early return if this build is from a forked PR - command: | - if [ -n "$CIRCLE_PR_NUMBER" ]; then - echo "Nothing to do for forked PRs, so marking this step successful" - circleci step halt - fi -jobs: - build: - docker: - - image: circleci/golang:1.16 - - - image: redislabs/redisgraph:edge - - working_directory: /go/src/github.com/RedisGraph/redisgraph-go - steps: - - checkout - - run: | - sudo apt-get update - sudo apt-get upgrade -y - - run: make test - - early_return_for_forked_pull_requests - - run: bash <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/master/codecov) -t ${CODECOV_TOKEN} - -workflows: - version: 2 - commit: - jobs: - - build - nightly: - triggers: - - schedule: - cron: "0 0 * * *" - filters: - branches: - only: - - master - jobs: - - build -