Skip to content

Commit 3647086

Browse files
authoredJan 31, 2024
upload build pipeline result
1 parent d04540f commit 3647086

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed
 

‎.github/workflows/cmake.yml

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CMake
1+
name: Build with CMake
22

33
on:
44
push:
@@ -14,17 +14,20 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- name: Checkout
18+
uses: actions/checkout@v3
1819

19-
- uses: egor-tensin/setup-gcc@v1
20+
- name: Install GCC
21+
uses: egor-tensin/setup-gcc@v1
2022
with:
2123
version: 13
2224

23-
- uses: jurplel/install-qt-action@v3
25+
- name: Install QT
26+
uses: jurplel/install-qt-action@v3
2427
with:
2528
version: '6.5.2'
2629

27-
- name: Configure CMake
30+
- name: Configure
2831
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
2932

3033
- name: Build
@@ -34,3 +37,8 @@ jobs:
3437
working-directory: ${{github.workspace}}/build
3538
run: ctest -C ${{env.BUILD_TYPE}}
3639

40+
- name: Upload
41+
uses: actions/upload-artifact@v4
42+
with:
43+
name: argentum
44+
path: ${{github.workspace}}/build/argentum

0 commit comments

Comments
 (0)
Please sign in to comment.