Skip to content

Commit ceed43e

Browse files
committed
chore: clean up after circleci removal
1 parent 7b9819e commit ceed43e

5 files changed

+8
-18
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square&cacheSeconds=3600)](https://protocol.ai)
55
[![GoDoc](https://img.shields.io/badge/godoc-reference-5272B4.svg?style=flat-square&cacheSeconds=3600)](https://godoc.org/github.com/ipfs/kubo)
6-
[![CircleCI](https://img.shields.io/circleci/build/github/ipfs/kubo?style=flat-square&cacheSeconds=3600)](https://circleci.com/gh/ipfs/kubo)
76

87
## What is Kubo?
98

@@ -33,7 +32,7 @@ Before opening an issue, consider using one of the following locations to ensure
3332
- Exploration of new ideas in [ipfs/notes issues](https://github.com/ipfs/notes/issues).
3433
- Ask questions and meet the rest of the community at the [IPFS Forum](https://discuss.ipfs.tech).
3534
- Or [chat with us](https://docs.ipfs.tech/community/chat/).
36-
35+
3736
[![YouTube Channel Subscribers](https://img.shields.io/youtube/channel/subscribers/UCdjsUXJ3QawK4O5L1kqqsew?label=Subscribe%20IPFS&style=social&cacheSeconds=3600)](https://www.youtube.com/channel/UCdjsUXJ3QawK4O5L1kqqsew) [![Follow @IPFS on Twitter](https://img.shields.io/twitter/follow/IPFS?style=social&cacheSeconds=3600)](https://twitter.com/IPFS)
3837

3938
## Next milestones
@@ -68,7 +67,7 @@ Before opening an issue, consider using one of the following locations to ensure
6867
- [Unofficial MacOS packages](#unofficial-macos-packages)
6968
- [MacPorts](#macports)
7069
- [Nix](#nix-macos)
71-
- [Homebrew](#homebrew)
70+
- [Homebrew](#homebrew)
7271
- [Build from Source](#build-from-source)
7372
- [Install Go](#install-go)
7473
- [Download and Compile IPFS](#download-and-compile-ipfs)

bin/get-docker-tags.sh

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,13 @@
66
# ./get-docker-tags.sh <build number> <git commit sha1> <git branch name> [git tag name]
77
#
88
# Example:
9-
#
9+
#
1010
# # get tag for the master branch
1111
# ./get-docker-tags.sh $(date -u +%F) testingsha master
1212
#
1313
# # get tag for a release tag
1414
# ./get-docker-tags.sh $(date -u +%F) testingsha release v0.5.0
1515
#
16-
# # Serving suggestion in circle ci - https://circleci.com/docs/2.0/env-vars/#built-in-environment-variables
17-
# ./get-docker-tags.sh $(date -u +%F) "$CIRCLE_SHA1" "$CIRCLE_BRANCH" "$CIRCLE_TAG"
18-
#
1916
set -euo pipefail
2017

2118
if [[ $# -lt 1 ]] ; then

bin/mkreleaselog

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ IGNORE_FILES=(
4141
"go.mod"
4242
"go.sum"
4343
".github"
44-
".circleci"
4544
"*.pb.go"
4645
"cbor_gen.go"
4746
"ipldsch_*.go"

bin/push-docker-tags.sh

+4-8
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22

33
# push-docker-tags.sh
44
#
5-
# Run from ci to tag images based on the current branch or tag name.
5+
# Run from ci to tag images based on the current branch or tag name.
66
# A bit like dockerhub autobuild config, but somewhere we can version control it.
7-
#
8-
# The `docker-build` job in .circleci/config.yml builds the current commit
9-
# in docker and tags it as ipfs/go-ipfs:wip
7+
#
8+
# The `docker-build` job builds the current commit in docker and tags it as ipfs/go-ipfs:wip
109
#
1110
# Then the `docker-publish` job runs this script to decide what tag, if any,
1211
# to publish to dockerhub.
@@ -17,16 +16,13 @@
1716
# Example:
1817
# # dry run. pass a 5th arg to have it print what it would do rather than do it.
1918
# ./push-docker-tags.sh $(date -u +%F) testingsha master "" dryrun
20-
#
19+
#
2120
# # push tag for the master branch
2221
# ./push-docker-tags.sh $(date -u +%F) testingsha master
2322
#
2423
# # push tag for a release tag
2524
# ./push-docker-tags.sh $(date -u +%F) testingsha release v0.5.0
2625
#
27-
# # Serving suggestion in circle ci - https://circleci.com/docs/2.0/env-vars/#built-in-environment-variables
28-
# ./push-docker-tags.sh $(date -u +%F) "$CIRCLE_SHA1" "$CIRCLE_BRANCH" "$CIRCLE_TAG"
29-
#
3026
set -euo pipefail
3127

3228
if [[ $# -lt 1 ]] ; then

codecov.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
codecov:
22
ci:
3-
- "ci/circle-ci"
43
- "!travis-ci.org"
54
- "!ci.ipfs.team:8111"
65
- "!ci.ipfs.team"
7-
- "!github.com"
6+
- "github.com"
87
notify:
98
require_ci_to_pass: no
109
after_n_builds: 2

0 commit comments

Comments
 (0)