Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suzuka Deletion Util and Followers Test Cleanup #660

Merged
merged 19 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions .github/workflows/build-push-containers-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -662,6 +662,72 @@ jobs:
run: |
./scripts/movement/manifest suzuka-client-e2e-followers-consistent


suzuka-util-build:
if: github.event.label.name == 'cicd:suzuka-containers' || github.ref == 'refs/heads/main'
permissions:
contents: read
packages: write
strategy:
matrix:
architecture: [x86_64, arm64]

runs-on: ${{ matrix.architecture == 'x86_64' && 'buildjet-8vcpu-ubuntu-2204' || 'buildjet-8vcpu-ubuntu-2204-arm' }}

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
ref: ${{ github.event.pull_request.head.ref || github.ref }}

- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Login to Docker Hub to Avoid Rate Limiting
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}

- name: Build and Push Docker image movement
run: |
./scripts/movement/build-push-image suzuka-util

suzuka-util-manifest:
permissions:
contents: read
packages: write
needs: suzuka-util-build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
ref: ${{ github.event.pull_request.head.ref || github.ref }}

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Login to Docker Hub to Avoid Rate Limiting
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}

- name: Build and Push Docker image movement
run: |
./scripts/movement/manifest suzuka-util


container-checks:
if: github.event.label.name == 'cicd:suzuka-containers' || github.ref == 'refs/heads/main'
Expand All @@ -676,6 +742,7 @@ jobs:
- suzuka-faucet-service-manifest
- suzuka-client-e2e-simple-interaction-manifest
- suzuka-client-e2e-followers-consistent-manifest
- suzuka-util-manifest
steps:

- name: Checkout repository
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/checks-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ jobs:
-p maptos-opt-executor \
-p memseq \
-p move-rocks \
-p movement-types
-p movement-types \
-p suzuka-config
EOF

suzuka-full-node-local:
Expand Down
Loading
Loading