diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6dd3c09 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,15 @@ +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)