Skip to content

Commit 9c8d5bf

Browse files
Fixed ci issues
1 parent a9d53d7 commit 9c8d5bf

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

.github/workflows/dynamic_analysis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,9 @@ jobs:
9191
working-directory: "${{ runner.workspace }}/build"
9292
run: |
9393
echo "Running perf stat..."
94-
perf stat -e cycles,instructions,cache-references,cache-misses,branches,branch-misses,context-switches,cpu-migrations,page-faults,\
95-
L1-dcache-loads,L1-dcache-load-misses,\
96-
L2-dcache-loads,L2-dcache-load-misses,\
97-
L3-cache-references,L3-cache-misses \
94+
perf stat -e cycles,instructions,branches,branch-misses,context-switches,cpu-migrations,page-faults,\
95+
cache-references,cache-misses,\
96+
L1-dcache-loads,L1-dcache-load-misses,
9897
./${{ env.BIN_NAME }} &> \
9998
"${{ runner.workspace }}/perf_stat_results.txt"
10099
continue-on-error: true

.github/workflows/windows.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,9 @@ jobs:
8181
shell: bash
8282
working-directory: "${{ runner.workspace }}/build"
8383
run: |
84-
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
85-
-DCMAKE_C_COMPILER=clang \
86-
-DCMAKE_CXX_COMPILER=clang++ \
87-
-DCMAKE_C_FLAGS="-Wall -Wextra -Wpedantic" \
88-
-DCMAKE_CXX_FLAGS="-Wall -Wextra -Wpedantic" \
84+
cmake -A x64 -T clang-cl -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
85+
-DCMAKE_C_FLAGS="/W4" \
86+
-DCMAKE_CXX_FLAGS="/W4" \
8987
"${{ github.workspace }}"
9088
9189
- name: Build with Clang

0 commit comments

Comments
 (0)