73 lines
2.4 KiB
YAML
73 lines
2.4 KiB
YAML
name: Occlum Runtime Docker Image Build and Push
|
|
|
|
# This is a manual trigger.
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
OS:
|
|
description: 'OS name (must choose from <ubuntu20, ubuntu22>)'
|
|
required: true
|
|
default: 'ubuntu20'
|
|
OCCLUM_VERSION:
|
|
description: 'The Occlum version is built on, e.g "0.30.1"'
|
|
required: true
|
|
default: '0.30.1'
|
|
SGX_PSW_VERSION:
|
|
description: 'The SGX PSW version libraries expected to be installed, e.g "2.20.100.4"'
|
|
required: true
|
|
default: '2.20.100.4'
|
|
SGX_DCAP_VERSION:
|
|
description: 'The SGX DCAP version libraries expected to be installed, e.g "1.17.100.4"'
|
|
required: true
|
|
default: '1.17.100.4'
|
|
|
|
jobs:
|
|
generate-ubuntu-rt-image:
|
|
runs-on: ubuntu-20.04
|
|
if: github.event.inputs.OS == 'ubuntu20' || github.event.inputs.OS == 'ubuntu22'
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
# Because "Build and push" step `context` field can't be subdir,
|
|
# we need to copy files needed by dockerfile to root dir of the project
|
|
- name: Copy context for docker build
|
|
run: |
|
|
cp -r tools/docker .
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
with:
|
|
driver-opts: env.BUILDKIT_STEP_LOG_MAX_SIZE=104857600
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Choose image base OS
|
|
run: |
|
|
if [[ "${{ github.event.inputs.OS }}" == "ubuntu22" ]]; then
|
|
echo "IMAGE_BASE=ubuntu22.04" >> $GITHUB_ENV
|
|
else
|
|
echo "IMAGE_BASE=ubuntu20.04" >> $GITHUB_ENV
|
|
fi;
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: ./tools/docker
|
|
file: ./tools/docker/Dockerfile.${{ env.IMAGE_BASE }}-rt
|
|
platforms: linux/amd64
|
|
build-args: |
|
|
"OCCLUM_VERSION=${{ github.event.inputs.OCCLUM_VERSION }}"
|
|
"SGX_PSW_VERSION=${{ github.event.inputs.SGX_PSW_VERSION }}"
|
|
"SGX_DCAP_VERSION=${{ github.event.inputs.SGX_DCAP_VERSION }}"
|
|
push: true
|
|
tags: occlum/occlum:${{ github.event.inputs.OCCLUM_VERSION }}-rt-${{ env.IMAGE_BASE }}
|