-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5679 from filecoin-project/next
1.5.1 staging branch
- Loading branch information
Showing
204 changed files
with
10,767 additions
and
2,592 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ version: 2.1 | |
orbs: | ||
go: gotest/[email protected] | ||
aws-cli: circleci/[email protected] | ||
packer: salaxander/[email protected] | ||
|
||
executors: | ||
golang: | ||
|
@@ -277,6 +278,11 @@ jobs: | |
- install-deps | ||
- prepare | ||
- run: make calibnet | ||
- run: mkdir linux-calibnet && mv lotus lotus-miner lotus-worker linux-calibnet | ||
- persist_to_workspace: | ||
root: "." | ||
paths: | ||
- linux-calibnet | ||
build-lotus-soup: | ||
description: | | ||
Compile `lotus-soup` Testground test plan | ||
|
@@ -289,7 +295,7 @@ jobs: | |
- run: cd extern/filecoin-ffi && make | ||
- run: | ||
name: "go get lotus@master" | ||
command: cd testplans/lotus-soup && go get github.com/filecoin-project/lotus@master | ||
command: cd testplans/lotus-soup && go mod edit -replace=github.com/filecoin-project/lotus=../.. | ||
- run: | ||
name: "build lotus-soup testplan" | ||
command: pushd testplans/lotus-soup && go build -tags=testground . | ||
|
@@ -583,6 +589,22 @@ jobs: | |
docker push $<<parameters.account-url>>/<<parameters.repo>>:${tag} | ||
done | ||
publish-packer: | ||
description: build and push AWS IAM and DigitalOcean droplet. | ||
executor: | ||
name: packer/default | ||
packer-version: 1.6.6 | ||
steps: | ||
- checkout | ||
- attach_workspace: | ||
at: "." | ||
- packer/build: | ||
template: tools/packer/lotus.pkr.hcl | ||
args: "-var ci_workspace_bins=./linux -var lotus_network=mainnet -var git_tag=$CIRCLE_TAG" | ||
- packer/build: | ||
template: tools/packer/lotus.pkr.hcl | ||
args: "-var ci_workspace_bins=./linux-calibnet -var lotus_network=calibrationnet -var git_tag=$CIRCLE_TAG" | ||
|
||
workflows: | ||
version: 2.1 | ||
ci: | ||
|
@@ -683,3 +705,15 @@ workflows: | |
path: . | ||
repo: lotus-dev | ||
tag: '${CIRCLE_SHA1:0:8}' | ||
- publish-packer: | ||
requires: | ||
- build-all | ||
- build-ntwk-calibration | ||
filters: | ||
branches: | ||
ignore: | ||
- /.*/ | ||
tags: | ||
only: | ||
- /^v\d+\.\d+\.\d+$/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.