Skip to content

Commit 9d36bce

Browse files
authored
Merge branch 'next' into feat/track-mutants-clarity-contains-key
2 parents 9d97913 + d0df9d1 commit 9d36bce

File tree

9 files changed

+18
-33
lines changed

9 files changed

+18
-33
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,9 @@ jobs:
8989
##
9090
## Runs when the following is true:
9191
## - tag is provided
92-
## - workflow is building default branch (master)
9392
create-release:
9493
if: |
95-
inputs.tag != '' &&
96-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
94+
inputs.tag != ''
9795
name: Create Release
9896
needs:
9997
- rustfmt

.github/workflows/create-source-binary.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ concurrency:
2121
jobs:
2222
## Runs when the following is true:
2323
## - tag is provided
24-
## - workflow is building default branch (master)
2524
artifact:
2625
if: |
27-
inputs.tag != '' &&
28-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
26+
inputs.tag != ''
2927
name: Build Binaries
3028
runs-on: ubuntu-latest
3129
strategy:
@@ -60,4 +58,3 @@ jobs:
6058
arch: ${{ matrix.arch }}
6159
cpu: ${{ matrix.cpu }}
6260
tag: ${{ inputs.tag }}
63-

.github/workflows/github-release.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,9 @@ jobs:
2525
##
2626
## Runs when the following is true:
2727
## - tag is provided
28-
## - workflow is building default branch (master)
2928
build-binaries:
3029
if: |
31-
inputs.tag != '' &&
32-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
30+
inputs.tag != ''
3331
name: Build Binaries
3432
uses: ./.github/workflows/create-source-binary.yml
3533
with:
@@ -41,8 +39,7 @@ jobs:
4139
## - workflow is building default branch (master)
4240
create-release:
4341
if: |
44-
inputs.tag != '' &&
45-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
42+
inputs.tag != ''
4643
name: Create Release
4744
runs-on: ubuntu-latest
4845
needs:
@@ -84,8 +81,7 @@ jobs:
8481
## - workflow is building default branch (master)
8582
docker-image:
8683
if: |
87-
inputs.tag != '' &&
88-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
84+
inputs.tag != ''
8985
name: Docker Image (Binary)
9086
uses: ./.github/workflows/image-build-binary.yml
9187
needs:

.github/workflows/image-build-binary.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ jobs:
2828
## - workflow is building default branch (master)
2929
image:
3030
if: |
31-
inputs.tag != '' &&
32-
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
31+
inputs.tag != ''
3332
name: Build Image
3433
runs-on: ubuntu-latest
3534
strategy:

.github/workflows/stacks-core-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
node-version: 18.x
154154
cache: "npm"
155155
cache-dependency-path: "./contrib/core-contract-tests/package-lock.json"
156-
- run: npm ci -f # need to force the update as long as we are using a beta version of the clarinet-sdk
156+
- run: npm ci
157157
- run: npm test
158158
## Upload code coverage file
159159
- name: Code Coverage

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ rand = "0.8"
2121
rand_chacha = "0.3.1"
2222
tikv-jemallocator = "0.5.4"
2323
# wsts = { version = "8.1", default-features = false }
24-
wsts = { git = "https://github.com/stacks-network/wsts.git", branch = "feat/public-sign-ids" }
24+
wsts = { git = "https://github.com/stacks-network/wsts.git", branch = "feat/public-sign-ids", default-features = false }
2525

2626
# Use a bit more than default optimization for
2727
# dev builds to speed up test execution

contrib/core-contract-tests/package-lock.json

Lines changed: 8 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contrib/core-contract-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"author": "",
1212
"license": "ISC",
1313
"dependencies": {
14-
"@hirosystems/clarinet-sdk": "^2.4.0-beta4",
14+
"@hirosystems/clarinet-sdk": "^2.4.1",
1515
"@stacks/clarunit": "0.0.1",
1616
"@stacks/transactions": "^6.12.0",
1717
"chokidar-cli": "^3.0.0",

stackslib/src/core/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ pub const BITCOIN_TESTNET_STACKS_21_BURN_HEIGHT: u64 = 2_422_101;
134134
pub const BITCOIN_TESTNET_STACKS_22_BURN_HEIGHT: u64 = 2_431_300;
135135
pub const BITCOIN_TESTNET_STACKS_23_BURN_HEIGHT: u64 = 2_431_633;
136136
pub const BITCOIN_TESTNET_STACKS_24_BURN_HEIGHT: u64 = 2_432_545;
137-
pub const BITCOIN_TESTNET_STACKS_25_BURN_HEIGHT: u64 = 20_000_000;
137+
pub const BITCOIN_TESTNET_STACKS_25_BURN_HEIGHT: u64 = 2_583_893;
138138
pub const BITCOIN_TESTNET_STACKS_30_BURN_HEIGHT: u64 = 30_000_000;
139139

140140
pub const BITCOIN_REGTEST_FIRST_BLOCK_HEIGHT: u64 = 0;

0 commit comments

Comments
 (0)