File tree 1 file changed +11
-5
lines changed 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
9
9
steps :
10
- - name : Checkout Repository
10
+ - name : Checkout Repository Job
11
11
uses : actions/checkout@v2
12
12
13
- - name : Install Dependencies
13
+ - name : Install Dependencies Job
14
14
run : |
15
15
sudo apt-get update
16
16
sudo apt-get install -y gcovr
17
17
sudo chmod +x tools/unit_test.sh
18
18
git submodule update --init --recursive
19
19
20
- - name : Configure and Build
20
+ - name : Configure and Build Job
21
21
run : |
22
22
cmake -S . -B build -DLIBMEM_BUILD_TESTS=ON
23
23
cmake --build build
24
24
25
- - name : Run Unit Tests
25
+ - name : Install Libmem Job
26
+ run : |
27
+ cd build
28
+ sudo make install
29
+ cd ..
30
+
31
+ - name : Run Unit Tests Job
26
32
run : |
27
33
sudo tools/unit_test.sh
28
34
29
- - name : Archive Artifacts
35
+ - name : Archive Artifacts Job
30
36
uses : actions/upload-artifact@v2
31
37
with :
32
38
name : libmem-artifacts
You can’t perform that action at this time.
0 commit comments