-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (41 loc) · 1.06 KB
/
alpine.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Alpine
on:
push:
paths-ignore:
- 'doc/**'
pull_request:
paths-ignore:
- 'doc/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: true
container: pdal/alpinebase:latest
steps:
- uses: actions/checkout@v4
- name: Setup
run: |
source ./scripts/ci/alpine/setup.sh
- name: CMake
run: |
source ../scripts/ci/alpine/cmake.sh
working-directory: ./build
- name: Compile
run: |
source ../scripts/ci/alpine/compile.sh
working-directory: ./build
- name: Test
run: |
source ../scripts/ci/alpine/test.sh
working-directory: ./build
- name: Examples
run: |
source ./scripts/ci/alpine/examples.sh