feat(tee): create SGX container with nix #45
This file contains 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
name: Build and publish fee-withdrawer-v2-tee image | |
on: | |
push: | |
branches: | |
- "gramine*" | |
workflow_dispatch: | |
inputs: | |
target_branch: | |
description: "Target branch to build fee-withdrawer-v2-tee image against" | |
type: string | |
required: true | |
jobs: | |
push_to_registry: | |
name: Push Docker image to Docker Hub | |
runs-on: [matterlabs-ci-runner] | |
steps: | |
- uses: actions/checkout@v4 | |
if: ${{ github.event_name == 'workflow_dispatch' }} | |
with: | |
ref: ${{ github.event.inputs.target_branch }} | |
- uses: actions/checkout@v4 | |
if: ${{ github.event_name != 'workflow_dispatch' }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- uses: cachix/install-nix-action@v27 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ github.token }} | |
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nixsgx.cachix.org-1:tGi36DlY2joNsIXOlGnSgWW0+E094V6hW0umQRo/KoE= | |
substituters = https://cache.nixos.org/ https://nixsgx.cachix.org/ | |
- name: Enable magic Nix cache | |
uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USER }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build base images | |
run: | | |
nix build -L .#docker-era-fee-withdrawer-azure | |
export IMAGE_TAG=$(docker load < result | grep -Po 'Loaded image.*: \K.*') | |
echo "Pushing image ${IMAGE_TAG} to Docker Hub" | |
docker tag "${IMAGE_TAG}" matterlabsrobot/"${IMAGE_TAG}" | |
docker push matterlabsrobot/"${IMAGE_TAG}" | |
docker tag matterlabsrobot/"${IMAGE_TAG}" matterlabsrobot/"${IMAGE_TAG%:*}:latest" | |
docker push matterlabsrobot/"${IMAGE_TAG%:*}:latest" | |
sed -i -e "s#FROM ${IMAGE_TAG%:*}:latest#FROM matterlabsrobot/${IMAGE_TAG%:*}:latest' tee/Dockerfile-azure | |
- name: Generate build ID for Flux Image Automation | |
id: build | |
run: | | |
sha=$(git rev-parse --short HEAD) | |
ts=$(date +%s%N | cut -b1-13) | |
echo "BUILD_ID=${sha}-${ts}" >> "$GITHUB_OUTPUT" | |
- name: Auth to google artifact registry | |
run: | | |
gcloud auth configure-docker us-docker.pkg.dev -q | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
if: ${{ !startsWith(github.ref, 'refs/tags') }} | |
with: | |
context: tee | |
push: true | |
tags: | | |
"us-docker.pkg.dev/matterlabs-infra/matterlabs-docker/fee-withdrawer-v2-tee:latest" | |
"us-docker.pkg.dev/matterlabs-infra/matterlabs-docker/fee-withdrawer-v2-tee:${{ steps.build.outputs.BUILD_ID }}" | |
file: tee/Dockerfile-azure | |
no-cache: true |