mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-30 04:35:22 +08:00
renaming items to stacks-core
This commit is contained in:
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -166,7 +166,7 @@ jobs:
|
|||||||
## either or of the following:
|
## either or of the following:
|
||||||
## - tag is not provided
|
## - tag is not provided
|
||||||
## - PR is approved
|
## - PR is approved
|
||||||
stacks-blockchain-tests:
|
stacks-core-tests:
|
||||||
if: |
|
if: |
|
||||||
inputs.tag != '' || (
|
inputs.tag != '' || (
|
||||||
inputs.tag == '' || (
|
inputs.tag == '' || (
|
||||||
@@ -175,11 +175,11 @@ jobs:
|
|||||||
github.event.review.state == 'approved'
|
github.event.review.state == 'approved'
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
name: Stacks Blockchain Tests
|
name: Stacks Core Tests
|
||||||
needs:
|
needs:
|
||||||
- rustfmt
|
- rustfmt
|
||||||
- create-cache
|
- create-cache
|
||||||
uses: ./.github/workflows/stacks-blockchain-tests.yml
|
uses: ./.github/workflows/stacks-core-tests.yml
|
||||||
|
|
||||||
bitcoin-tests:
|
bitcoin-tests:
|
||||||
if: |
|
if: |
|
||||||
|
|||||||
4
.github/workflows/clarity-js-sdk-pr.yml
vendored
4
.github/workflows/clarity-js-sdk-pr.yml
vendored
@@ -22,7 +22,7 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
name: Open Clarity JS SDK PR
|
name: Open Clarity JS SDK PR
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# This condition can be removed once the main `stacks-blockchain` workflow creates pre-releases
|
# This condition can be removed once the main `stacks-core` workflow creates pre-releases
|
||||||
# when appropriate, instead of full releases for every tag passed in.
|
# when appropriate, instead of full releases for every tag passed in.
|
||||||
if: "!contains(github.ref, '-rc')"
|
if: "!contains(github.ref, '-rc')"
|
||||||
steps:
|
steps:
|
||||||
@@ -58,7 +58,7 @@ jobs:
|
|||||||
labels: |
|
labels: |
|
||||||
dependencies
|
dependencies
|
||||||
body: |
|
body: |
|
||||||
:robot: This is an automated pull request created from a new release in [stacks-blockchain](https://github.com/stacks-network/stacks-blockchain/releases).
|
:robot: This is an automated pull request created from a new release in [stacks-core](https://github.com/stacks-network/stacks-core/releases).
|
||||||
|
|
||||||
Updates the clarity-native-bin tag.
|
Updates the clarity-native-bin tag.
|
||||||
assignees: zone117x
|
assignees: zone117x
|
||||||
|
|||||||
2
.github/workflows/create-cache.yml
vendored
2
.github/workflows/create-cache.yml
vendored
@@ -9,7 +9,7 @@ on:
|
|||||||
## env vars are transferred to composite action steps
|
## env vars are transferred to composite action steps
|
||||||
env:
|
env:
|
||||||
RUSTFLAGS: "-Cinstrument-coverage -Awarnings"
|
RUSTFLAGS: "-Cinstrument-coverage -Awarnings"
|
||||||
LLVM_PROFILE_FILE: "stacks-blockchain-%p-%m.profraw"
|
LLVM_PROFILE_FILE: "stacks-core-%p-%m.profraw"
|
||||||
BTC_VERSION: "0.20.0"
|
BTC_VERSION: "0.20.0"
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|||||||
6
.github/workflows/docs-pr.yml
vendored
6
.github/workflows/docs-pr.yml
vendored
@@ -69,7 +69,7 @@ jobs:
|
|||||||
echo "::set-output name=open_pr::0"
|
echo "::set-output name=open_pr::0"
|
||||||
else
|
else
|
||||||
git remote add robot https://github.com/$ROBOT_OWNER/$ROBOT_REPO
|
git remote add robot https://github.com/$ROBOT_OWNER/$ROBOT_REPO
|
||||||
git commit -m "auto: update Clarity references JSONs from stacks-blockchain@${GITHUB_SHA}"
|
git commit -m "auto: update Clarity references JSONs from stacks-core@${GITHUB_SHA}"
|
||||||
git push robot $ROBOT_BRANCH
|
git push robot $ROBOT_BRANCH
|
||||||
echo "::set-output name=open_pr::1"
|
echo "::set-output name=open_pr::1"
|
||||||
fi
|
fi
|
||||||
@@ -109,6 +109,6 @@ jobs:
|
|||||||
let result = await github.pulls.create({
|
let result = await github.pulls.create({
|
||||||
owner, repo, head,
|
owner, repo, head,
|
||||||
base: "master",
|
base: "master",
|
||||||
title: "Auto: Update API documentation from stacks-blockchain",
|
title: "Auto: Update API documentation from stacks-core",
|
||||||
body: "Update API documentation from the latest in `stacks-blockchain`",
|
body: "Update API documentation from the latest in `stacks-core`",
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
## Github workflow to run full genesis and unit tests
|
## Github workflow to run full genesis and unit tests
|
||||||
|
|
||||||
name: Tests::Stacks Blockchain
|
name: Tests::Stacks Core
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
@@ -13,7 +13,7 @@ env:
|
|||||||
TEST_TIMEOUT: 30
|
TEST_TIMEOUT: 30
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: stacks-blockchain-tests-${{ github.head_ref || github.ref || github.run_id }}
|
group: stacks-core-tests-${{ github.head_ref || github.ref || github.run_id }}
|
||||||
## Only cancel in progress if this is for a PR
|
## Only cancel in progress if this is for a PR
|
||||||
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
||||||
|
|
||||||
12
.github/workflows/standalone-tests.yml
vendored
12
.github/workflows/standalone-tests.yml
vendored
@@ -22,7 +22,7 @@ on:
|
|||||||
- Bitcoin Tests
|
- Bitcoin Tests
|
||||||
- Epoch Tests
|
- Epoch Tests
|
||||||
- Slow Tests
|
- Slow Tests
|
||||||
- Stacks-Blockchain Tests
|
- Stacks-Core Tests
|
||||||
|
|
||||||
## Set the display name to the test being run
|
## Set the display name to the test being run
|
||||||
run-name: ${{ inputs.workflow }}
|
run-name: ${{ inputs.workflow }}
|
||||||
@@ -38,18 +38,18 @@ jobs:
|
|||||||
## either or of the following:
|
## either or of the following:
|
||||||
## - workflow is 'Release Tests'
|
## - workflow is 'Release Tests'
|
||||||
## - workflow is 'CI Tests'
|
## - workflow is 'CI Tests'
|
||||||
## - workflow is 'Stacks-Blockchain Tests'
|
## - workflow is 'Stacks-Core Tests'
|
||||||
stacks-blockchain-tests:
|
stacks-core-tests:
|
||||||
if: |
|
if: |
|
||||||
(
|
(
|
||||||
inputs.workflow == 'Release Tests' ||
|
inputs.workflow == 'Release Tests' ||
|
||||||
inputs.workflow == 'CI Tests' ||
|
inputs.workflow == 'CI Tests' ||
|
||||||
inputs.workflow == 'Stacks-Blockchain Tests'
|
inputs.workflow == 'Stacks-Core Tests'
|
||||||
)
|
)
|
||||||
name: Stacks Blockchain Tests
|
name: Stacks Core Tests
|
||||||
needs:
|
needs:
|
||||||
- create-cache
|
- create-cache
|
||||||
uses: ./.github/workflows/stacks-blockchain-tests.yml
|
uses: ./.github/workflows/stacks-core-tests.yml
|
||||||
|
|
||||||
## Runs when:
|
## Runs when:
|
||||||
## either or of the following:
|
## either or of the following:
|
||||||
|
|||||||
Reference in New Issue
Block a user