Skip to content

Commit

Permalink
Merge branch 'issues/657/refactor/transfer-msg_period-param' into iss…
Browse files Browse the repository at this point in the history
…ues/657/chore/app-transfer-period

* issues/657/refactor/transfer-msg_period-param:
  [Tooling, Code Health] refactor: split Makefile into multiple files (#816)
  [Tooling] fix and add makefile targets (#814)
  [Docs] Add a debugging tip: using transaction hashes (#786)
  [Refactor] Replace embedded Service with ServiceId (#802)
  [Session,Service] Ensure SessionHeader and Service basic validation. (#782)
  [Tokenomics] Preparation for Global Mint Reimbursement Request (#755)
  [Quick PR][LocalNet] Turn off minimum-gas-prices (#805)
  [GATEWAY POC] A couple helpers to help deploy a PATH gateway (#801)
  [Documentation] Cosmovisor  (#768)
  [CI] Add cosmovisor to container images (#796)
  Use a descriptive error if service ID is not found (#787)
  [SessionManager] Implement off-chain proof params usage (#765)
  [SDK] Update shannon sdk dependency (#800)
  [E2E Test] Remove redundant logging (#798)
  • Loading branch information
bryanchriswhite committed Sep 16, 2024
2 parents 09e60ba + 75c5927 commit 816eaa2
Show file tree
Hide file tree
Showing 155 changed files with 3,928 additions and 2,820 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
context: .

run-e2e-tests:
timeout-minutes: 20
timeout-minutes: 30
needs: build-push-container
if: contains(github.event.pull_request.labels.*.name, 'devnet-test-e2e')
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
make ignite_update_ldflags
make ignite_release
make ignite_release_extract_binaries
make cosmovisor_cross_compile
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,7 @@ gentx-*.json
cmd/poktrolld/*debug_bin*

# The temporary file created by e2e scripts
job.yaml
job.yaml

# tmp directory for locally produced artifacts
tmp/*
3 changes: 3 additions & 0 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ WORKDIR /poktroll

RUN mv /poktroll/bin/ignite /usr/bin/ && mv /poktroll/bin/poktrolld /usr/bin/

# Install Cosmovisor
RUN make install_cosmovisor

# These are helpful for testing locally:
# RUN mv bin/poktrolld /usr/bin/
# RUN mv bin/ignite /usr/bin/
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This Dockerfile is used to build container image for production workloads.
# It relies on the binaries produced by `ignite_release` and `ignite_release_extract_binaries` make targets.
# It relies on the binaries produced by `cosmovisor_cross_compile`, `ignite_release` and `ignite_release_extract_binaries` make targets.
FROM alpine:3.19
ARG TARGETARCH

Expand All @@ -10,6 +10,7 @@ RUN addgroup --gid 1025 -S pocket && adduser --uid 1025 -S pocket -G pocket
RUN apk add --no-cache gcompat

COPY --chown=pocket:pocket release_binaries/poktroll_linux_$TARGETARCH /bin/poktrolld
COPY --chown=pocket:pocket tmp/cosmovisor-linux-$TARGETARCH /bin/cosmovisor

USER pocket

Expand Down
Loading

0 comments on commit 816eaa2

Please sign in to comment.