We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c94faa commit 1381897Copy full SHA for 1381897
.github/workflows/ccpp.yml
@@ -6,9 +6,11 @@ jobs:
6
build:
7
8
runs-on: ubuntu-latest
9
-
+
10
steps:
11
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v2
12
+ - name: update repositories
13
+ run: sudo apt-get update
14
- name: install dependency
15
run: sudo apt-get install libkrb5-dev libunistring-dev gettext xsltproc libxml2-utils docbook-xml docbook-xsl
16
- name: autoreconf
@@ -19,3 +21,9 @@ jobs:
19
21
run: make
20
22
- name: make check
23
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