Skip to content

Commit 4e7f10c

Browse files
committed
feat: Bump Sapphire to 1.0.0-testnet and other deps
1 parent 2916c1d commit 4e7f10c

File tree

4 files changed

+15
-151
lines changed

4 files changed

+15
-151
lines changed

.github/workflows/ci-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ jobs:
110110
OASIS_CORE_VERSION: "25.3"
111111
OASIS_NODE_BINARY: ${{ github.workspace }}/oasis_core/oasis-node
112112
OASIS_NET_RUNNER_BINARY: ${{ github.workspace }}/oasis_core/oasis-net-runner
113-
SAPPHIRE_PARATIME_VERSION: 0.10.3
113+
SAPPHIRE_PARATIME_VERSION: 1.0.0-testnet
114114
GATEWAY__CHAIN_ID: 23293
115115
GATEWAY__OASIS_RPCS: true
116116
SAPPHIRE_PARATIME: ${{ github.workspace }}/oasis_core/sapphire-paratime
117-
KEYMANAGER_ARTIFACT_URL: https://buildkite.com/organizations/oasisprotocol/pipelines/oasis-core-ci/builds/14705/jobs/0194ccf8-bc61-4fbb-87ed-af8d4343f4a2/artifacts/0194ccfc-63d2-486e-adcf-f95f9efff291 # Find this at https://buildkite.com/oasisprotocol/oasis-core-ci/builds?branch=stable%2F<...> under "Build runtimes": simple-keymanager.mocksgx.
117+
KEYMANAGER_ARTIFACT_URL: https://buildkite.com/organizations/oasisprotocol/pipelines/oasis-core-ci/builds/15683/jobs/019837cd-8499-4567-ab19-70a46601a3eb/artifacts/019837d5-6805-45b8-8fa1-9a951b85867d # Find this at https://buildkite.com/oasisprotocol/oasis-core-ci/builds?branch=stable%2F<...> under "Build runtimes": simple-keymanager.mocksgx.
118118
KEYMANAGER_BINARY: ${{ github.workspace }}/oasis_core/simple-keymanager
119119
OASIS_NODE_DATADIR: /tmp/eth-runtime-test
120120
OASIS_DOCKER_START_EXPLORER: no

docker/sapphire-localnet/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
ARG PARATIME_VERSION=0.10.3
1+
ARG PARATIME_VERSION=1.0.0-testnet
22
ARG PARATIME_NAME=sapphire
33

4-
FROM ghcr.io/oasisprotocol/oasis-core-dev:stable-25.3.x AS oasis-core-dev
4+
FROM ghcr.io/oasisprotocol/oasis-core-dev:stable-25.4.x AS oasis-core-dev
55

66
ARG PARATIME_VERSION
77
ARG PARATIME_NAME
@@ -11,19 +11,19 @@ ARG PARATIME_NAME
1111
# variant.
1212
# Note that the simple keymanager is always freshly built because we need to
1313
# specify different build options from what is in the release version.
14-
ARG OASIS_CORE_SIMPLE_KM_BRANCH=stable/25.3.x
15-
ARG OASIS_CORE_VERSION=25.3
14+
ARG OASIS_CORE_SIMPLE_KM_BRANCH=stable/25.4.x
15+
ARG OASIS_CORE_VERSION=25.4
1616
#ARG OASIS_CORE_BRANCH=stable/24.3.x
17-
ARG OASIS_CLI_VERSION=0.13.4
17+
ARG OASIS_CLI_VERSION=0.14.2
1818
#ARG OASIS_CLI_BRANCH=master
1919
ARG OASIS_WEB3_GATEWAY_BRANCH=v5.2.0
2020
#ARG OASIS_WEB3_GATEWAY_VERSION=main
2121
#ARG OASIS_SAPPHIRE_PARATIME_BRANCH=main
2222

23-
ARG NEXUS_VERSION=0.6.13
23+
ARG NEXUS_VERSION=0.7.10
2424
# ARG NEXUS_BRANCH=main
2525

26-
ARG EXPLORER_BRANCH=v1.20.0
26+
ARG EXPLORER_BRANCH=v1.23.2
2727

2828
COPY docker/common /out
2929
COPY tests/tools/* /out/

go.mod

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ require (
2121
github.com/gorilla/mux v1.8.1
2222
github.com/gorilla/websocket v1.5.3
2323
github.com/knadh/koanf v1.5.0
24-
github.com/oasisprotocol/oasis-core/go v0.2503.0
25-
github.com/oasisprotocol/oasis-sdk/client-sdk/go v0.15.0
24+
github.com/oasisprotocol/oasis-core/go v0.2504.0
25+
github.com/oasisprotocol/oasis-sdk/client-sdk/go v0.16.0
2626
github.com/prometheus/client_golang v1.22.0
2727
github.com/rs/cors v1.11.1
2828
github.com/spf13/cobra v1.9.1
@@ -89,8 +89,6 @@ require (
8989
github.com/jinzhu/inflection v1.0.0 // indirect
9090
github.com/klauspost/compress v1.18.0 // indirect
9191
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
92-
github.com/libp2p/go-buffer-pool v0.1.0 // indirect
93-
github.com/libp2p/go-libp2p v0.39.0 // indirect
9492
github.com/magiconair/properties v1.8.7 // indirect
9593
github.com/mattn/go-colorable v0.1.14 // indirect
9694
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -106,9 +104,7 @@ require (
106104
github.com/multiformats/go-base36 v0.2.0 // indirect
107105
github.com/multiformats/go-multiaddr v0.14.0 // indirect
108106
github.com/multiformats/go-multibase v0.2.0 // indirect
109-
github.com/multiformats/go-multicodec v0.9.0 // indirect
110107
github.com/multiformats/go-multihash v0.2.3 // indirect
111-
github.com/multiformats/go-multistream v0.6.0 // indirect
112108
github.com/multiformats/go-varint v0.0.7 // indirect
113109
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
114110
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect

0 commit comments

Comments
 (0)