This repository has been archived by the owner on Nov 21, 2023. It is now read-only.
Merge pull request #162 from Xynnn007/fix-rvps-docker #376
Workflow file for this run
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: Container image build test | |
on: [push, pull_request, create] | |
jobs: | |
basic_ci: | |
if: github.event_name == 'pull_request' || github.event_name == 'push' | |
name: Check | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@v4 | |
- name: Build gRPC AS Container Image | |
run: | | |
DOCKER_BUILDKIT=1 docker build -t attestation-service:latest . -f Dockerfile.as | |
- name: Build RVPS Container Image | |
run: | | |
Docker_BUILDKIT=1 docker build -t rvps:latest . -f Dockerfile.rvps |