-
Notifications
You must be signed in to change notification settings - Fork 2
feat!: port mutexbot actions to rust and add isolation channels #7
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,107 @@ | ||
| name: MutexBot Container Image | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| paths: | ||
| - "mutexbot/**" | ||
| push: | ||
| branches: | ||
| - main | ||
| paths: | ||
| - "mutexbot/**" | ||
| tags: | ||
| - "mutexbot-v*.*.*" | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| env: | ||
| DOCKERHUB_REPO: neondatabase/dev-actions | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', matrix.platform == 'linux/arm64' && 'small-arm64' || 'small')) }} | ||
| outputs: | ||
| digest_arm64: ${{ steps.export_digest.outputs.digest_arm64 }} | ||
| digest_amd64: ${{ steps.export_digest.outputs.digest_amd64 }} | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| platform: | ||
| - linux/amd64 | ||
| - linux/arm64 | ||
| steps: | ||
| - name: Fetch mutexbot folder | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| sparse-checkout: mutexbot | ||
|
|
||
| - name: Docker meta | ||
| id: meta | ||
| uses: docker/metadata-action@v5 | ||
| with: | ||
| images: ${{ env.DOCKERHUB_REPO }} | ||
|
|
||
| - name: Set up Docker Buildx | ||
| uses: docker/setup-buildx-action@v3 | ||
|
|
||
| - name: Login to Docker Hub | ||
| uses: docker/login-action@v3 | ||
| with: | ||
| username: ${{ secrets.NEON_DOCKERHUB_USERNAME }} | ||
| password: ${{ secrets.NEON_DOCKERHUB_PASSWORD }} | ||
|
|
||
| - name: Build and push by digest | ||
| id: build | ||
| uses: docker/build-push-action@v6 | ||
| with: | ||
| context: mutexbot | ||
| platforms: ${{ matrix.platform }} | ||
| labels: ${{ steps.meta.outputs.labels }} | ||
| outputs: type=image,name=${{ env.DOCKERHUB_REPO }},push-by-digest=true,name-canonical=true,push=true | ||
|
|
||
| - name: Export digest | ||
| id: export_digest | ||
| run: | | ||
| arch="$(echo -n ${{ matrix.platform }} | sed -e 's/linux\///')" | ||
| digest="${{ steps.build.outputs.digest }}" | ||
| echo "digest_${arch}=${digest#sha256:}" >> "$GITHUB_OUTPUT" | ||
|
|
||
| merge: | ||
| runs-on: ["self-hosted", "small"] | ||
| needs: | ||
| - build | ||
| steps: | ||
| - name: Login to Docker Hub | ||
| uses: docker/login-action@v3 | ||
| with: | ||
| username: ${{ secrets.NEON_DOCKERHUB_USERNAME }} | ||
| password: ${{ secrets.NEON_DOCKERHUB_PASSWORD }} | ||
|
|
||
| - name: Set up Docker Buildx | ||
| uses: docker/setup-buildx-action@v3 | ||
|
|
||
| - name: Docker meta | ||
| id: meta | ||
| uses: docker/metadata-action@v5 | ||
| with: | ||
| images: ${{ env.DOCKERHUB_REPO }} | ||
| tags: | | ||
| # branch event | ||
| type=ref,enable=true,priority=600,prefix=mutexbot-,suffix=,event=branch | ||
| # pull request event | ||
| type=ref,enable=true,priority=600,prefix=mutexbot-pr-,suffix=,event=pr | ||
| # tags event | ||
| type=match,pattern=mutexbot-v(.*) | ||
|
|
||
| - name: Create manifest list and push | ||
| run: | | ||
| docker buildx imagetools create \ | ||
| $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ | ||
| ${{ env.DOCKERHUB_REPO }}@sha256:${{ needs.build.outputs.digest_arm64 }} \ | ||
| ${{ env.DOCKERHUB_REPO }}@sha256:${{ needs.build.outputs.digest_amd64 }} | ||
|
|
||
| - name: Inspect image | ||
| run: docker buildx imagetools inspect ${{ env.DOCKERHUB_REPO }}:${{ steps.meta.outputs.version }} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| /target |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.