File tree 1 file changed +19
-2
lines changed
1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change 58
58
- name : Build
59
59
run : cmake --build %GITHUB_WORKSPACE%\metrix-simulator\build-windows --target install --parallel 2 --config Release
60
60
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
You can’t perform that action at this time.
0 commit comments