We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21f268e commit bcf8446Copy full SHA for bcf8446
1 file changed
.github/workflows/ci_zzdds.yml
@@ -0,0 +1,32 @@
1
+name: CI zzdds
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - 'srcZig/**'
7
+ push:
8
9
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