mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
chore: clean up after circleci removal
This commit is contained in:
parent
7b9819e526
commit
ceed43ea0e
@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
[](https://protocol.ai)
|
[](https://protocol.ai)
|
||||||
[](https://godoc.org/github.com/ipfs/kubo)
|
[](https://godoc.org/github.com/ipfs/kubo)
|
||||||
[](https://circleci.com/gh/ipfs/kubo)
|
|
||||||
|
|
||||||
## What is 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).
|
- 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).
|
- 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/).
|
- Or [chat with us](https://docs.ipfs.tech/community/chat/).
|
||||||
|
|
||||||
[](https://www.youtube.com/channel/UCdjsUXJ3QawK4O5L1kqqsew) [](https://twitter.com/IPFS)
|
[](https://www.youtube.com/channel/UCdjsUXJ3QawK4O5L1kqqsew) [](https://twitter.com/IPFS)
|
||||||
|
|
||||||
## Next milestones
|
## 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)
|
- [Unofficial MacOS packages](#unofficial-macos-packages)
|
||||||
- [MacPorts](#macports)
|
- [MacPorts](#macports)
|
||||||
- [Nix](#nix-macos)
|
- [Nix](#nix-macos)
|
||||||
- [Homebrew](#homebrew)
|
- [Homebrew](#homebrew)
|
||||||
- [Build from Source](#build-from-source)
|
- [Build from Source](#build-from-source)
|
||||||
- [Install Go](#install-go)
|
- [Install Go](#install-go)
|
||||||
- [Download and Compile IPFS](#download-and-compile-ipfs)
|
- [Download and Compile IPFS](#download-and-compile-ipfs)
|
||||||
|
|||||||
@ -6,16 +6,13 @@
|
|||||||
# ./get-docker-tags.sh <build number> <git commit sha1> <git branch name> [git tag name]
|
# ./get-docker-tags.sh <build number> <git commit sha1> <git branch name> [git tag name]
|
||||||
#
|
#
|
||||||
# Example:
|
# Example:
|
||||||
#
|
#
|
||||||
# # get tag for the master branch
|
# # get tag for the master branch
|
||||||
# ./get-docker-tags.sh $(date -u +%F) testingsha master
|
# ./get-docker-tags.sh $(date -u +%F) testingsha master
|
||||||
#
|
#
|
||||||
# # get tag for a release tag
|
# # get tag for a release tag
|
||||||
# ./get-docker-tags.sh $(date -u +%F) testingsha release v0.5.0
|
# ./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
|
set -euo pipefail
|
||||||
|
|
||||||
if [[ $# -lt 1 ]] ; then
|
if [[ $# -lt 1 ]] ; then
|
||||||
|
|||||||
@ -41,7 +41,6 @@ IGNORE_FILES=(
|
|||||||
"go.mod"
|
"go.mod"
|
||||||
"go.sum"
|
"go.sum"
|
||||||
".github"
|
".github"
|
||||||
".circleci"
|
|
||||||
"*.pb.go"
|
"*.pb.go"
|
||||||
"cbor_gen.go"
|
"cbor_gen.go"
|
||||||
"ipldsch_*.go"
|
"ipldsch_*.go"
|
||||||
|
|||||||
@ -2,11 +2,10 @@
|
|||||||
|
|
||||||
# push-docker-tags.sh
|
# 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.
|
# 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
|
# The `docker-build` job builds the current commit in docker and tags it as ipfs/go-ipfs:wip
|
||||||
# in docker and tags it as ipfs/go-ipfs:wip
|
|
||||||
#
|
#
|
||||||
# Then the `docker-publish` job runs this script to decide what tag, if any,
|
# Then the `docker-publish` job runs this script to decide what tag, if any,
|
||||||
# to publish to dockerhub.
|
# to publish to dockerhub.
|
||||||
@ -17,16 +16,13 @@
|
|||||||
# Example:
|
# Example:
|
||||||
# # dry run. pass a 5th arg to have it print what it would do rather than do it.
|
# # 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-docker-tags.sh $(date -u +%F) testingsha master "" dryrun
|
||||||
#
|
#
|
||||||
# # push tag for the master branch
|
# # push tag for the master branch
|
||||||
# ./push-docker-tags.sh $(date -u +%F) testingsha master
|
# ./push-docker-tags.sh $(date -u +%F) testingsha master
|
||||||
#
|
#
|
||||||
# # push tag for a release tag
|
# # push tag for a release tag
|
||||||
# ./push-docker-tags.sh $(date -u +%F) testingsha release v0.5.0
|
# ./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
|
set -euo pipefail
|
||||||
|
|
||||||
if [[ $# -lt 1 ]] ; then
|
if [[ $# -lt 1 ]] ; then
|
||||||
|
|||||||
@ -1,10 +1,9 @@
|
|||||||
codecov:
|
codecov:
|
||||||
ci:
|
ci:
|
||||||
- "ci/circle-ci"
|
|
||||||
- "!travis-ci.org"
|
- "!travis-ci.org"
|
||||||
- "!ci.ipfs.team:8111"
|
- "!ci.ipfs.team:8111"
|
||||||
- "!ci.ipfs.team"
|
- "!ci.ipfs.team"
|
||||||
- "!github.com"
|
- "github.com"
|
||||||
notify:
|
notify:
|
||||||
require_ci_to_pass: no
|
require_ci_to_pass: no
|
||||||
after_n_builds: 2
|
after_n_builds: 2
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user