Skip to content

Commit 8a9a2b0

Browse files
committed
update kw report yaml
Change-Id: I5cb5c215a1463f1131f8dc57146370cb427239be
1 parent 61d1f5b commit 8a9a2b0

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/workflows/ci-kw-linux-report.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,13 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- name: kw
1414
run: |
15+
cd src
1516
git clone https://github.com/simdjson/simdjson.git
16-
ci-kw-linux.sh "echo No Preparation for make" "make -j"
17+
cd ..
18+
mkdir build
19+
cd build
20+
cmake ..
21+
ci-kw-linux.sh "echo No Preparation" "make -j"
1722
1823
- name: kw-report
1924
run: |

.github/workflows/ci-kw-windows-report.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,13 @@ jobs:
1616

1717
- name: kw
1818
run: |
19+
cd ${{github.workspace}}\src
1920
git clone https://github.com/simdjson/simdjson.git
20-
c:\pcm\ci-kw-windows.ps1 'echo No_preparation_for_msbuild' 'msbuild pcm-all.sln /p:Configuration=Release,Platform=x64 /t:Clean,Build /m'
21+
cd ..
22+
mkdir build
23+
cd build
24+
cmake ..
25+
c:\pcm\ci-kw-windows.ps1 'echo No_preparation' 'cmake --build . -j'
2126
2227
- name: kw-report
2328
run: |
@@ -31,7 +36,7 @@ jobs:
3136

3237
- name: kw-msr-driver
3338
run: |
34-
chdir WinMSRDriver
39+
chdir ${{github.workspace}}\src\WinMSRDriver
3540
c:\pcm\ci-kw-windows.ps1 'echo No_preparation_for_msbuild' 'msbuild MSR.vcxproj /p:Configuration=Release,Platform=x64 /t:Clean,Build /m'
3641
3742
- name: kw-report-msr-driver

0 commit comments

Comments
 (0)