diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 137f523..3b5d58e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,7 @@ on: push: env: - STACKS_BLOCKCHAIN_COMMIT: "feat/epoch-2.4" + STACKS_BLOCKCHAIN_COMMIT: 14fc7fee769bfa01484d130a4f269884b0b0e9a8 jobs: cancel-previous-runs: @@ -115,13 +115,13 @@ jobs: images: hirosystems/stacks-api-e2e tags: | type=raw,value=latest,enable={{is_default_branch}} - type=raw,value=stacks2.4,enable={{is_default_branch}} - type=raw,value=stacks2.4-{{branch}}-{{sha}} - type=ref,event=branch,prefix=stacks2.4- - type=ref,event=pr,prefix=stacks2.4- - type=semver,pattern={{version}},prefix=stacks2.4- - type=semver,pattern={{major}}.{{minor}},prefix=stacks2.4- - type=sha,prefix=stacks2.4- + type=raw,value=stacks3.0,enable={{is_default_branch}} + type=raw,value=stacks3.0-{{branch}}-{{sha}} + type=ref,event=branch,prefix=stacks3.0- + type=ref,event=pr,prefix=stacks3.0- + type=semver,pattern={{version}},prefix=stacks3.0- + type=semver,pattern={{major}}.{{minor}},prefix=stacks3.0- + type=sha,prefix=stacks3.0- - name: Set up QEMU uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx diff --git a/Dockerfile.e2e b/Dockerfile.e2e index b09f0ed..f7eba9f 100644 --- a/Dockerfile.e2e +++ b/Dockerfile.e2e @@ -3,7 +3,7 @@ FROM rust:bullseye as builder # A commit hash, tag, or branch -ARG GIT_COMMIT=feat/epoch-2.4 +ARG GIT_COMMIT=14fc7fee769bfa01484d130a4f269884b0b0e9a8 ARG BLOCKCHAIN_REPO=https://github.com/stacks-network/stacks-blockchain.git ARG TARGETPLATFORM @@ -94,6 +94,13 @@ ENV STACKS_23_HEIGHT=$STACKS_23_HEIGHT ARG STACKS_24_HEIGHT=111 ENV STACKS_24_HEIGHT=$STACKS_24_HEIGHT +ARG STACKS_25_HEIGHT=112 +ENV STACKS_25_HEIGHT=$STACKS_25_HEIGHT + +# do not boot into epoch3.0 for now (it doesn't work yet) +ARG STACKS_30_HEIGHT=999999 +ENV STACKS_30_HEIGHT=$STACKS_30_HEIGHT + # priv: 6ad9cadb42d4edbfbe0c5bfb3b8a4125ddced021c4174f829b714ccbf527f02001 # ARG REWARD_RECIPIENT=STQM73RQC4EX0A07KWG1J5ECZJYBZS4SJ4ERC6WN ARG REWARD_RECIPIENT @@ -177,7 +184,7 @@ RUN <