Skip to content

Commit 1381897

Browse files
committed
Fix CI scripts
Signed-off-by: Simo Sorce <[email protected]>
1 parent 4c94faa commit 1381897

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/ccpp.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ jobs:
66
build:
77

88
runs-on: ubuntu-latest
9-
9+
1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v2
12+
- name: update repositories
13+
run: sudo apt-get update
1214
- name: install dependency
1315
run: sudo apt-get install libkrb5-dev libunistring-dev gettext xsltproc libxml2-utils docbook-xml docbook-xsl
1416
- name: autoreconf
@@ -19,3 +21,9 @@ jobs:
1921
run: make
2022
- name: make check
2123
run: make check
24+
- name: Upload logs
25+
uses: actions/upload-artifact@v1
26+
if: failure()
27+
with:
28+
name: testlogs
29+
path: test-suite.log

0 commit comments

Comments
 (0)