From ceed43ea0e4b402f8873f4bfe47ee8a191e99a5f Mon Sep 17 00:00:00 2001 From: galargh <piotr.galar@gmail.com> Date: Thu, 2 Mar 2023 09:11:48 +0100 Subject: [PATCH] chore: clean up after circleci removal --- README.md | 5 ++--- bin/get-docker-tags.sh | 5 +---- bin/mkreleaselog | 1 - bin/push-docker-tags.sh | 12 ++++-------- codecov.yml | 3 +-- 5 files changed, 8 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 94e5e42af..07f8a87c5 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ [](https://protocol.ai) [](https://godoc.org/github.com/ipfs/kubo) -[](https://circleci.com/gh/ipfs/kubo) ## What is Kubo? @@ -33,7 +32,7 @@ Before opening an issue, consider using one of the following locations to ensure - Exploration of new ideas in [ipfs/notes issues](https://github.com/ipfs/notes/issues). - Ask questions and meet the rest of the community at the [IPFS Forum](https://discuss.ipfs.tech). - Or [chat with us](https://docs.ipfs.tech/community/chat/). - + [](https://www.youtube.com/channel/UCdjsUXJ3QawK4O5L1kqqsew) [](https://twitter.com/IPFS) ## Next milestones @@ -68,7 +67,7 @@ Before opening an issue, consider using one of the following locations to ensure - [Unofficial MacOS packages](#unofficial-macos-packages) - [MacPorts](#macports) - [Nix](#nix-macos) - - [Homebrew](#homebrew) + - [Homebrew](#homebrew) - [Build from Source](#build-from-source) - [Install Go](#install-go) - [Download and Compile IPFS](#download-and-compile-ipfs) diff --git a/bin/get-docker-tags.sh b/bin/get-docker-tags.sh index e50ec69fa..e54da6482 100755 --- a/bin/get-docker-tags.sh +++ b/bin/get-docker-tags.sh @@ -6,16 +6,13 @@ # ./get-docker-tags.sh <build number> <git commit sha1> <git branch name> [git tag name] # # Example: -# +# # # get tag for the master branch # ./get-docker-tags.sh $(date -u +%F) testingsha master # # # get tag for a release tag # ./get-docker-tags.sh $(date -u +%F) testingsha release v0.5.0 # -# # Serving suggestion in circle ci - https://circleci.com/docs/2.0/env-vars/#built-in-environment-variables -# ./get-docker-tags.sh $(date -u +%F) "$CIRCLE_SHA1" "$CIRCLE_BRANCH" "$CIRCLE_TAG" -# set -euo pipefail if [[ $# -lt 1 ]] ; then diff --git a/bin/mkreleaselog b/bin/mkreleaselog index 1b31854a7..bd8d418b0 100755 --- a/bin/mkreleaselog +++ b/bin/mkreleaselog @@ -41,7 +41,6 @@ IGNORE_FILES=( "go.mod" "go.sum" ".github" - ".circleci" "*.pb.go" "cbor_gen.go" "ipldsch_*.go" diff --git a/bin/push-docker-tags.sh b/bin/push-docker-tags.sh index 00d314c07..af809b989 100755 --- a/bin/push-docker-tags.sh +++ b/bin/push-docker-tags.sh @@ -2,11 +2,10 @@ # push-docker-tags.sh # -# Run from ci to tag images based on the current branch or tag name. +# Run from ci to tag images based on the current branch or tag name. # A bit like dockerhub autobuild config, but somewhere we can version control it. -# -# The `docker-build` job in .circleci/config.yml builds the current commit -# in docker and tags it as ipfs/go-ipfs:wip +# +# The `docker-build` job builds the current commit in docker and tags it as ipfs/go-ipfs:wip # # Then the `docker-publish` job runs this script to decide what tag, if any, # to publish to dockerhub. @@ -17,16 +16,13 @@ # Example: # # dry run. pass a 5th arg to have it print what it would do rather than do it. # ./push-docker-tags.sh $(date -u +%F) testingsha master "" dryrun -# +# # # push tag for the master branch # ./push-docker-tags.sh $(date -u +%F) testingsha master # # # push tag for a release tag # ./push-docker-tags.sh $(date -u +%F) testingsha release v0.5.0 # -# # Serving suggestion in circle ci - https://circleci.com/docs/2.0/env-vars/#built-in-environment-variables -# ./push-docker-tags.sh $(date -u +%F) "$CIRCLE_SHA1" "$CIRCLE_BRANCH" "$CIRCLE_TAG" -# set -euo pipefail if [[ $# -lt 1 ]] ; then diff --git a/codecov.yml b/codecov.yml index f6d4fc05b..8405abb90 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,10 +1,9 @@ codecov: ci: - - "ci/circle-ci" - "!travis-ci.org" - "!ci.ipfs.team:8111" - "!ci.ipfs.team" - - "!github.com" + - "github.com" notify: require_ci_to_pass: no after_n_builds: 2 -- GitLab