Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/ccp-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ on:
push:
pull_request:
types: [opened, reopened]
workflow_dispatch:
inputs:
job_to_run:
description: 'Select the job to run manually'
type: 'choice'
options:
- 'build_arm32'
default: 'build_arm32'
log_level:
description: 'Log level'
required: false
default: 'info'


jobs:
Expand Down Expand Up @@ -202,3 +214,22 @@ jobs:
run: ctest --output-on-failure -C Release
working-directory: build

build_arm32:
name: Linux-ARM32 Build
runs-on: ubuntu-latest
if: ${{ github.event.inputs.job_to_run == 'build_arm32' }}
steps:
- uses: actions/checkout@v5
- uses: uraimo/run-on-arch-action@v2
with:
arch: armv7
distro: ubuntu22.04
githubToken: ${{ github.token }}
install: |
apt-get update -q -y
apt-get install -q -y cmake make g++ libtiff-dev python3
run: |
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DOJPH_BUILD_STREAM_EXPAND=ON -DOJPH_ENABLE_TIFF_SUPPORT=OFF -DOJPH_BUILD_TESTS=ON ..
make
ctest --output-on-failure
Loading