Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: .github/workflows/
Date: Wed, 13 Oct 2021 14:22:35
Message-Id: 1634134854.331f4d4d585b9ac845da732aa3b8a5ae139418c4.ulm@gentoo
1 commit: 331f4d4d585b9ac845da732aa3b8a5ae139418c4
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 13 14:20:54 2021 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 13 14:20:54 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=331f4d4d
7
8 .github/workflows/devmanual-ci.yml: Run apt-get update
9
10 As recommended in documentation.
11
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 .github/workflows/devmanual-ci.yml | 10 ++++++----
15 1 file changed, 6 insertions(+), 4 deletions(-)
16
17 diff --git a/.github/workflows/devmanual-ci.yml b/.github/workflows/devmanual-ci.yml
18 index 7f32e80..9d8e11f 100644
19 --- a/.github/workflows/devmanual-ci.yml
20 +++ b/.github/workflows/devmanual-ci.yml
21 @@ -15,15 +15,17 @@ jobs:
22 build:
23 runs-on: ubuntu-latest # no gentoo :(
24 steps:
25 - - uses: actions/checkout@v2
26 + - name: checkout
27 + uses: actions/checkout@v2
28 - name: install prerequisites
29 # librsvg2-bin for rsvg-convert
30 # xsltproc for xsltproc
31 # libxml2-utils for xmllint
32 # tidy for tidy
33 - run: >
34 - sudo apt install -y librsvg2-bin xsltproc libxml2-utils tidy
35 - fonts-open-sans
36 + run: |
37 + sudo apt-get -q -y update
38 + sudo apt-get -q -y install librsvg2-bin xsltproc libxml2-utils \
39 + tidy fonts-open-sans
40 - name: make
41 run: make
42 - name: make check