Skip to content

add github action workflow #2

add github action workflow

add github action workflow #2

Workflow file for this run

name: pangolin
on: [ push ]
jobs:
linux-amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build
run: |
make -C shellcode
mkdir -p build
cmake -B build -DCMAKE_TOOLCHAIN_FILE="${VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake"
cmake --build build -j$(nproc)