renaming items to stacks-core

This commit is contained in:
wileyj
2023-11-28 20:10:46 -08:00
parent 6f29b3cbbb
commit dec30101de
6 changed files with 17 additions and 17 deletions

View File

@@ -166,7 +166,7 @@ jobs:
## either or of the following:
## - tag is not provided
## - PR is approved
stacks-blockchain-tests:
stacks-core-tests:
if: |
inputs.tag != '' || (
inputs.tag == '' || (
@@ -175,11 +175,11 @@ jobs:
github.event.review.state == 'approved'
)
)
name: Stacks Blockchain Tests
name: Stacks Core Tests
needs:
- rustfmt
- create-cache
uses: ./.github/workflows/stacks-blockchain-tests.yml
uses: ./.github/workflows/stacks-core-tests.yml
bitcoin-tests:
if: |

View File

@@ -22,7 +22,7 @@ jobs:
run:
name: Open Clarity JS SDK PR
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.
if: "!contains(github.ref, '-rc')"
steps:
@@ -58,7 +58,7 @@ jobs:
labels: |
dependencies
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.
assignees: zone117x

View File

@@ -9,7 +9,7 @@ on:
## env vars are transferred to composite action steps
env:
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"
##

View File

@@ -69,7 +69,7 @@ jobs:
echo "::set-output name=open_pr::0"
else
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
echo "::set-output name=open_pr::1"
fi
@@ -109,6 +109,6 @@ jobs:
let result = await github.pulls.create({
owner, repo, head,
base: "master",
title: "Auto: Update API documentation from stacks-blockchain",
body: "Update API documentation from the latest in `stacks-blockchain`",
title: "Auto: Update API documentation from stacks-core",
body: "Update API documentation from the latest in `stacks-core`",
});

View File

@@ -1,6 +1,6 @@
## Github workflow to run full genesis and unit tests
name: Tests::Stacks Blockchain
name: Tests::Stacks Core
on:
workflow_call:
@@ -13,7 +13,7 @@ env:
TEST_TIMEOUT: 30
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
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

View File

@@ -22,7 +22,7 @@ on:
- Bitcoin Tests
- Epoch Tests
- Slow Tests
- Stacks-Blockchain Tests
- Stacks-Core Tests
## Set the display name to the test being run
run-name: ${{ inputs.workflow }}
@@ -38,18 +38,18 @@ jobs:
## either or of the following:
## - workflow is 'Release Tests'
## - workflow is 'CI Tests'
## - workflow is 'Stacks-Blockchain Tests'
stacks-blockchain-tests:
## - workflow is 'Stacks-Core Tests'
stacks-core-tests:
if: |
(
inputs.workflow == 'Release Tests' ||
inputs.workflow == 'CI Tests' ||
inputs.workflow == 'Stacks-Blockchain Tests'
inputs.workflow == 'Stacks-Core Tests'
)
name: Stacks Blockchain Tests
name: Stacks Core Tests
needs:
- create-cache
uses: ./.github/workflows/stacks-blockchain-tests.yml
uses: ./.github/workflows/stacks-core-tests.yml
## Runs when:
## either or of the following: