Skip to content

Commit

Permalink
chore: release fxcorevisor v7.2.0-rc2 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
nulnut committed May 21, 2024
1 parent 3f039b8 commit 32fa8e0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
6 changes: 5 additions & 1 deletion tools/cosmovisor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ FROM functionx/fx-core:5.0.0 as fxv5
FROM functionx/fx-core:6.0.0 as fxv6
FROM functionx/fx-core:7.0.1-rc0 as fxv7
FROM functionx/fx-core:7.1.0-rc1 as fxv7_1
FROM functionx/fx-core:7.2.0-rc2 as fxv7_2

# build fxcorevisor
FROM alpine:3.18
Expand Down Expand Up @@ -51,7 +52,8 @@ RUN mkdir -p /cosmovisor/binary/genesis/bin && \
mkdir -p /cosmovisor/binary/upgrades/v5.0.x/bin && \
mkdir -p /cosmovisor/binary/upgrades/v6.0.x/bin && \
mkdir -p /cosmovisor/binary/upgrades/v7.0.x/bin && \
mkdir -p /cosmovisor/binary/upgrades/v7.1.x/bin
mkdir -p /cosmovisor/binary/upgrades/v7.1.x/bin && \
mkdir -p /cosmovisor/binary/upgrades/v7.2.x/bin

COPY --from=builder /app/tools/cosmovisor/upgrades-info/fxv2 /cosmovisor/upgrades-info
COPY --from=builder /app/tools/cosmovisor/upgrades-info/fxv3 /cosmovisor/upgrades-info
Expand All @@ -62,6 +64,7 @@ COPY --from=builder /app/tools/cosmovisor/upgrades-info/v5.0.x /cosmovisor/upgra
COPY --from=builder /app/tools/cosmovisor/upgrades-info/v6.0.x /cosmovisor/upgrades-info
COPY --from=builder /app/tools/cosmovisor/upgrades-info/v7.0.x /cosmovisor/upgrades-info
COPY --from=builder /app/tools/cosmovisor/upgrades-info/v7.1.x /cosmovisor/upgrades-info
COPY --from=builder /app/tools/cosmovisor/upgrades-info/v7.2.x /cosmovisor/upgrades-info

COPY --from=fxv1 /usr/bin/fxcored /cosmovisor/binary/genesis/bin
COPY --from=fxv2 /usr/bin/fxcored /cosmovisor/binary/upgrades/fxv2/bin
Expand All @@ -73,6 +76,7 @@ COPY --from=fxv5 /usr/bin/fxcored /cosmovisor/binary/upgrades/v5.0.x/bin
COPY --from=fxv6 /usr/bin/fxcored /cosmovisor/binary/upgrades/v6.0.x/bin
COPY --from=fxv7 /usr/bin/fxcored /cosmovisor/binary/upgrades/v7.0.x/bin
COPY --from=fxv7_1 /usr/bin/fxcored /cosmovisor/binary/upgrades/v7.1.x/bin
COPY --from=fxv7_2 /usr/bin/fxcored /cosmovisor/binary/upgrades/v7.2.x/bin

COPY --from=builder /app/tools/cosmovisor/cosmovisor /usr/bin/cosmovisor

Expand Down
6 changes: 5 additions & 1 deletion tools/cosmovisor/Dockerfile_lite
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ RUN go env -w GO111MODULE=on && cd /app/tools/cosmovisor && go mod download && m
FROM functionx/fx-core:6.0.0 as fxv6
FROM functionx/fx-core:7.0.1-rc0 as fxv7
FROM functionx/fx-core:7.1.0-rc1 as fxv7_1
FROM functionx/fx-core:7.2.0-rc2 as fxv7_2

# build fxcorevisor
FROM alpine:3.18
Expand All @@ -37,14 +38,17 @@ ENV DAEMON_UPGRADES_INFO_PATH=/cosmovisor/upgrades-info

RUN mkdir -p /cosmovisor/binary/genesis/bin && \
mkdir -p /cosmovisor/binary/upgrades/v7.0.x/bin && \
mkdir -p /cosmovisor/binary/upgrades/v7.1.x/bin
mkdir -p /cosmovisor/binary/upgrades/v7.1.x/bin && \
mkdir -p /cosmovisor/binary/upgrades/v7.2.x/bin

COPY --from=builder /app/tools/cosmovisor/upgrades-info/v7.0.x /cosmovisor/upgrades-info
COPY --from=builder /app/tools/cosmovisor/upgrades-info/v7.1.x /cosmovisor/upgrades-info
COPY --from=builder /app/tools/cosmovisor/upgrades-info/v7.2.x /cosmovisor/upgrades-info

COPY --from=fxv6 /usr/bin/fxcored /cosmovisor/binary/genesis/bin
COPY --from=fxv7 /usr/bin/fxcored /cosmovisor/binary/upgrades/v7.0.x/bin
COPY --from=fxv7_1 /usr/bin/fxcored /cosmovisor/binary/upgrades/v7.1.x/bin
COPY --from=fxv7_2 /usr/bin/fxcored /cosmovisor/binary/upgrades/v7.2.x/bin

COPY --from=builder /app/tools/cosmovisor/cosmovisor /usr/bin/cosmovisor

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"v7.2.x","height":14389000}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"v7.2.x","height":9223372036854775807}

0 comments on commit 32fa8e0

Please sign in to comment.