Skip to content

Commit f43ffa2

Browse files
committed
Resolve merge conflicts with main branch
2 parents 0172a76 + d3c6bf1 commit f43ffa2

File tree

23 files changed

+1845
-880
lines changed

23 files changed

+1845
-880
lines changed

.github/workflows/build-future.yml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@ on:
1212
required: false
1313
inputs:
1414
sha:
15-
description: 'Sha to build'
16-
type: 'string'
15+
description: "Sha to build"
16+
type: "string"
1717
required: true
1818
tag-prefix:
19-
description: 'Prefix for the tag name'
20-
type: 'string'
21-
default: ''
19+
description: "Prefix for the tag name"
20+
type: "string"
21+
default: ""
2222

2323
jobs:
24-
2524
amd64:
2625
uses: ./.github/workflows/build.yml
2726
secrets:
@@ -31,12 +30,12 @@ jobs:
3130
sha: ${{ inputs.sha }}
3231
arch: amd64
3332
tag: ${{ inputs.tag-prefix }}future-amd64
34-
protocol_version_default: 22
35-
xdr_ref: v22.0.0
36-
core_ref: v22.3.0
37-
horizon_ref: horizon-v22.0.2
38-
stellar_rpc_ref: v22.1.2
39-
friendbot_ref: horizon-v22.0.2
33+
protocol_version_default: 23
34+
xdr_ref: v23.0.0
35+
core_ref: v23.0.0
36+
horizon_ref: horizon-v23.0.0
37+
stellar_rpc_ref: v23.0.0
38+
friendbot_ref: horizon-v23.0.0
4039
lab_ref: main
4140
test_matrix: |
4241
{
@@ -56,12 +55,12 @@ jobs:
5655
sha: ${{ inputs.sha }}
5756
arch: arm64
5857
tag: ${{ inputs.tag-prefix }}future-arm64
59-
protocol_version_default: 22
60-
xdr_ref: v22.0.0
61-
core_ref: v22.3.0
62-
horizon_ref: horizon-v22.0.2
63-
stellar_rpc_ref: v22.1.2
64-
friendbot_ref: horizon-v22.0.2
58+
protocol_version_default: 23
59+
xdr_ref: v23.0.0
60+
core_ref: v23.0.0
61+
horizon_ref: horizon-v23.0.0
62+
stellar_rpc_ref: v23.0.0
63+
friendbot_ref: horizon-v23.0.0
6564
lab_ref: main
6665
test_matrix: |
6766
{

.github/workflows/build-latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
arch: amd64
3434
tag: ${{ inputs.tag-prefix }}latest-amd64
3535
protocol_version_default: 22
36-
xdr_ref: v22.0.0
36+
xdr_ref: v23.0.0
3737
core_ref: v22.3.0
3838
horizon_ref: horizon-v22.0.2
3939
stellar_rpc_ref: v22.1.2
@@ -58,7 +58,7 @@ jobs:
5858
arch: arm64
5959
tag: ${{ inputs.tag-prefix }}latest-arm64
6060
protocol_version_default: 22
61-
xdr_ref: v22.0.0
61+
xdr_ref: v23.0.0
6262
core_ref: v22.3.0
6363
horizon_ref: horizon-v22.0.2
6464
stellar_rpc_ref: v22.1.2

.github/workflows/build-testing.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
sha: ${{ inputs.sha }}
3434
arch: amd64
3535
tag: ${{ inputs.tag-prefix }}testing-amd64
36-
protocol_version_default: 22
37-
xdr_ref: v22.0.0
38-
core_ref: v22.3.0
39-
horizon_ref: horizon-v22.0.2
40-
stellar_rpc_ref: v22.1.2
41-
friendbot_ref: horizon-v22.0.2
36+
protocol_version_default: 23
37+
xdr_ref: v23.0.0
38+
core_ref: v23.0.0
39+
horizon_ref: horizon-v23.0.0
40+
stellar_rpc_ref: v23.0.0
41+
friendbot_ref: horizon-v23.0.0
4242
lab_ref: main
4343
test_matrix: |
44-
{
44+
{j
4545
"network": ["testnet", "pubnet", "local"],
4646
"core": ["core", null],
4747
"horizon": ["horizon", null],
@@ -58,12 +58,12 @@ jobs:
5858
sha: ${{ inputs.sha }}
5959
arch: arm64
6060
tag: ${{ inputs.tag-prefix }}testing-arm64
61-
protocol_version_default: 22
62-
xdr_ref: v22.0.0
63-
core_ref: v22.3.0
64-
horizon_ref: horizon-v22.0.2
65-
stellar_rpc_ref: v22.1.2
66-
friendbot_ref: horizon-v22.0.2
61+
protocol_version_default: 23
62+
xdr_ref: v23.0.0
63+
core_ref: v23.0.0
64+
horizon_ref: horizon-v23.0.0
65+
stellar_rpc_ref: v23.0.0
66+
friendbot_ref: horizon-v23.0.0
6767
lab_ref: main
6868
test_matrix: |
6969
{

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -438,12 +438,10 @@ jobs:
438438
run: >
439439
docker run
440440
--platform linux/${{ inputs.arch }}
441-
--rm
442441
-d
443442
-p
444443
"8000:8000"
445444
-p "11626:11626"
446-
-v "$PWD/logs":/var/log/supervisor
447445
--name stellar
448446
$IMAGE
449447
--${{ matrix.network }}
@@ -505,7 +503,7 @@ jobs:
505503
go run tests/test_stellar_rpc_healthy.go
506504
- name: Prepare Test Logs
507505
if: always()
508-
run: sudo chmod -R a+r logs
506+
run: docker cp stellar:/var/log logs
509507
- name: Upload Test Logs
510508
if: always()
511509
uses: actions/upload-artifact@v4

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ RUN adduser --system --group --quiet --home /var/lib/stellar --disabled-password
4444
RUN ["mkdir", "-p", "/opt/stellar"]
4545
RUN ["touch", "/opt/stellar/.docker-ephemeral"]
4646

47+
RUN ["rm", "-fr", "/etc/supervisor"]
48+
RUN ["ln", "-sT", "/opt/stellar/supervisor/etc", "/etc/supervisor"]
49+
4750
RUN ["ln", "-s", "/opt/stellar", "/stellar"]
4851
RUN ["ln", "-s", "/opt/stellar/core/etc/stellar-core.cfg", "/stellar-core.cfg"]
4952
RUN ["ln", "-s", "/opt/stellar/horizon/etc/horizon.env", "/horizon.env"]

Dockerfile.lab

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ RUN git fetch origin ${NEXT_PUBLIC_COMMIT_HASH}
99
RUN git checkout ${NEXT_PUBLIC_COMMIT_HASH}
1010
RUN rm -rf .git
1111
RUN yarn install --frozen-lockfile
12+
ENV NEXT_PUBLIC_ENABLE_STANDALONE_OUTPUT=true
1213
ENV NEXT_PUBLIC_ENABLE_EXPLORER=true
1314
ENV NEXT_PUBLIC_DEFAULT_NETWORK=custom
1415
ENV NEXT_BASE_PATH=/lab

Makefile

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,29 +25,29 @@ console:
2525
build-latest:
2626
$(MAKE) build TAG=latest \
2727
PROTOCOL_VERSION_DEFAULT=22 \
28-
XDR_REF=v22.0.0 \
28+
XDR_REF=v23.0.0 \
2929
CORE_REF=v22.3.0 \
3030
HORIZON_REF=horizon-v22.0.3 \
3131
STELLAR_RPC_REF=v22.1.2 \
3232
FRIENDBOT_REF=horizon-v22.0.3
3333

3434
build-testing:
3535
$(MAKE) build TAG=testing \
36-
PROTOCOL_VERSION_DEFAULT=22 \
37-
XDR_REF=v22.0.0 \
38-
CORE_REF=v22.3.0 \
39-
HORIZON_REF=horizon-v22.0.3 \
40-
STELLAR_RPC_REF=v22.1.2 \
41-
FRIENDBOT_REF=horizon-v22.0.3
36+
PROTOCOL_VERSION_DEFAULT=23 \
37+
XDR_REF=v23.0.0 \
38+
CORE_REF=v23.0.0 \
39+
HORIZON_REF=horizon-v23.0.0 \
40+
STELLAR_RPC_REF=v23.0.0 \
41+
FRIENDBOT_REF=horizon-v23.0.0
4242

4343
build-future:
4444
$(MAKE) build TAG=future \
45-
PROTOCOL_VERSION_DEFAULT=22 \
46-
XDR_REF=v22.0.0 \
47-
CORE_REF=v22.3.0 \
48-
HORIZON_REF=horizon-v22.0.3 \
49-
STELLAR_RPC_REF=v22.1.2 \
50-
FRIENDBOT_REF=horizon-v22.0.3
45+
PROTOCOL_VERSION_DEFAULT=23 \
46+
XDR_REF=v23.0.0 \
47+
CORE_REF=v23.0.0 \
48+
HORIZON_REF=horizon-v23.0.0 \
49+
STELLAR_RPC_REF=v23.0.0 \
50+
FRIENDBOT_REF=horizon-v23.0.0
5151

5252
build:
5353
$(MAKE) -j 4 build-deps

0 commit comments

Comments
 (0)