Skip to content

Commit

Permalink
add github action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackerl committed Oct 20, 2023
1 parent 57f8627 commit 19d7381
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 19d7381

Please sign in to comment.