Skip to content

Commit

Permalink
Build pinpoint via CI
Browse files Browse the repository at this point in the history
  • Loading branch information
UsualSpec committed Oct 21, 2024
1 parent 328da08 commit 25ad8d3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI Client builder
on: [workflow_dispatch, push]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: pguyot/arm-runner-action@v2
with:
image_additional_mb: 8192
base_image: raspios_lite_arm64:latest
bind_mount_repository: true
copy_artifact_path: build/pinpoint
copy_artifact_dest: ${{ github.workspace }}
commands: |
# update system and install dependencies
apt update
apt install -y cmake build-essential
mkdir build
cd build/
cmake ..
make -j 2
- name: Upload binary release file
uses: actions/upload-artifact@v4
with:
name: pinpoint
path: ${{ github.workspace }}/pinpoint

0 comments on commit 25ad8d3

Please sign in to comment.