File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 30
30
- name : Check
31
31
working-directory : ${{github.workspace}}/build
32
32
run : ctest . -j`nproc` -C ${{env.BUILD_TYPE}} --test-dir libskrypt --rerun-failed --output-on-failure
33
+
34
+ - name : Upload build artifacts
35
+ uses : actions/upload-artifact@v4
36
+ with :
37
+ name : skrypt-cmake-build
38
+ path : |
39
+ ${{github.workspace}}/build/bin
40
+ ${{github.workspace}}/build/lib
41
+ retention-days : 7
Original file line number Diff line number Diff line change 83
83
- name : Check
84
84
working-directory : ${{github.workspace}}/build
85
85
run : ctest . -C ${{ matrix.config }} -j ${{steps.cpu-cores.outputs.count}} --test-dir libskrypt --rerun-failed --output-on-failure
86
+
87
+ - name : Upload build artifacts
88
+ uses : actions/upload-artifact@v4
89
+ with :
90
+ name : skrypt-vcpkg-${{ runner.os }}-${{ matrix.config }}
91
+ path : |
92
+ ${{github.workspace}}/build/bin
93
+ ${{github.workspace}}/build/lib
94
+ ${{github.workspace}}/install/bin
95
+ ${{github.workspace}}/install/lib
96
+ retention-days : 7
You can’t perform that action at this time.
0 commit comments