Skip to content

UID2-2349 Add build pipeline for aws vsock proxy #6

UID2-2349 Add build pipeline for aws vsock proxy

UID2-2349 Add build pipeline for aws vsock proxy #6

Workflow file for this run

name: Build/Test/Package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container: amazonlinux:2
strategy:
matrix:
build_type: [debug, relwithdebinfo]
steps:
- name: Dev environment
run: |
yum groupinstall -y "Development Tools"
yum install -y cmake3 valgrind git
- uses: actions/checkout@v3
- name: Build and Test
run: |
cmake3 -S . -B build -DCMAKE_BUILD_TYPE=${{matrix.build_type}}
cd build
make package
make test