Skip to content

Commit b71008e

Browse files
committed
test
Signed-off-by: Damien Jeandemange <[email protected]>
1 parent a083e44 commit b71008e

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

Diff for: .github/workflows/ci_windows.yml

+19-2
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,22 @@ jobs:
5858
- name: Build
5959
run: cmake --build %GITHUB_WORKSPACE%\metrix-simulator\build-windows --target install --parallel 2 --config Release
6060

61-
- name: Tests
62-
run: cd %GITHUB_WORKSPACE%\metrix-simulator\build-windows && ctest -j8 --output-on-failure -C Release
61+
# - name: Tests
62+
# run: cd %GITHUB_WORKSPACE%\metrix-simulator\build-windows && ctest -j2 --output-on-failure -C Release
63+
64+
- name: Prepare Metrix install artifact
65+
shell: bash
66+
id: metrix-install
67+
run: |
68+
ARCHIVE_NAME="metrix-simulator-windows"
69+
ARCHIVE_PATH="${GITHUB_WORKSPACE}/${ARCHIVE_NAME}"
70+
cd $GITHUB_WORKSPACE/metrix-simulator/build-windows/install
71+
zip -r $ARCHIVE_PATH bin etc
72+
echo "archive_name=$ARCHIVE_NAME" >> "$GITHUB_OUTPUT"
73+
echo "archive_path=$ARCHIVE_PATH" >> "$GITHUB_OUTPUT"
74+
75+
- name: Upload Metrix install artifact
76+
uses: actions/upload-artifact@v3
77+
with:
78+
name: ${{ steps.metrix-install.outputs.archive_name }}.zip
79+
path: ${{ steps.metrix-install.outputs.archive_path }}.zip

0 commit comments

Comments
 (0)