File tree 1 file changed +13
-5
lines changed
1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
- name : CMake
1
+ name : Build with CMake
2
2
3
3
on :
4
4
push :
@@ -14,17 +14,20 @@ jobs:
14
14
runs-on : ubuntu-latest
15
15
16
16
steps :
17
- - uses : actions/checkout@v3
17
+ - name : Checkout
18
+ uses : actions/checkout@v3
18
19
19
- - uses : egor-tensin/setup-gcc@v1
20
+ - name : Install GCC
21
+ uses : egor-tensin/setup-gcc@v1
20
22
with :
21
23
version : 13
22
24
23
- - uses : jurplel/install-qt-action@v3
25
+ - name : Install QT
26
+ uses : jurplel/install-qt-action@v3
24
27
with :
25
28
version : ' 6.5.2'
26
29
27
- - name : Configure CMake
30
+ - name : Configure
28
31
run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
29
32
30
33
- name : Build
34
37
working-directory : ${{github.workspace}}/build
35
38
run : ctest -C ${{env.BUILD_TYPE}}
36
39
40
+ - name : Upload
41
+ uses : actions/upload-artifact@v4
42
+ with :
43
+ name : argentum
44
+ path : ${{github.workspace}}/build/argentum
You can’t perform that action at this time.
0 commit comments