Skip to content

Commit bcf8446

Browse files
committed
Add zzdds build CI workflow
1 parent 21f268e commit bcf8446

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/ci_zzdds.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI zzdds
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'srcZig/**'
7+
push:
8+
paths:
9+
- 'srcZig/**'
10+
workflow_dispatch:
11+
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: true
15+
16+
jobs:
17+
build:
18+
name: Build shape_main
19+
runs-on: ubuntu-24.04
20+
21+
steps:
22+
- name: Checkout dds-rtps
23+
uses: actions/checkout@v4
24+
25+
- name: Install Zig
26+
uses: mlugg/setup-zig@v2
27+
with:
28+
version: "0.16.0"
29+
30+
- name: Build shape_main
31+
working-directory: srcZig/zzdds
32+
run: zig build -Dtarget=x86_64-linux-gnu -Doptimize=ReleaseSafe

0 commit comments

Comments
 (0)