Skip to content

Commit 9924b5b

Browse files
committed
Update Github Actions
Use YES/NO instead of ON/OFF for CMake options in Github Actions to match existing style for this project.
1 parent 876c0e2 commit 9924b5b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ubuntu-build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
run: |
6363
cmake -B build \
6464
-DCMAKE_BUILD_TYPE="Debug" \
65-
-DTR31_USE_SSCANF_DATETIME=ON
65+
-DTR31_USE_SSCANF_DATETIME=YES
6666
6767
- name: Build
6868
run: cmake --build build -j 4
@@ -97,7 +97,7 @@ jobs:
9797
run: |
9898
cmake -B build \
9999
-DCMAKE_BUILD_TYPE="${{ matrix.build_type }}" \
100-
-DTR31_ENABLE_SANITIZERS=ON
100+
-DTR31_ENABLE_SANITIZERS=YES
101101
102102
- name: Build
103103
run: cmake --build build -j 4
@@ -126,7 +126,7 @@ jobs:
126126
cmake -B build \
127127
-DCMAKE_BUILD_TYPE="RelWithDebInfo" \
128128
-DBUILD_SHARED_LIBS=YES \
129-
-DTR31_ENABLE_HARDENING=ON
129+
-DTR31_ENABLE_HARDENING=YES
130130
131131
- name: Build
132132
run: cmake --build build -j 4

0 commit comments

Comments
 (0)