public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/devmanual:master commit in: .github/workflows/
@ 2024-10-24 17:47 Ulrich Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Ulrich Müller @ 2024-10-24 17:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f8e02d95ead2aa11bad2270c7c5922e8844dda2c
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 24 17:42:36 2024 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Oct 24 17:42:36 2024 +0000
URL:        https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=f8e02d95

.github/workflows/devmanual-ci.yml: Update to actions/checkout@v4

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 .github/workflows/devmanual-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/devmanual-ci.yml b/.github/workflows/devmanual-ci.yml
index 9d8e11f..0dce0f7 100644
--- a/.github/workflows/devmanual-ci.yml
+++ b/.github/workflows/devmanual-ci.yml
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
 # Distributed under the terms of the MIT license
 # or the CC-BY-SA-4.0 license (dual-licensed)
 
@@ -16,7 +16,7 @@ jobs:
     runs-on: ubuntu-latest # no gentoo :(
     steps:
     - name: checkout
-      uses: actions/checkout@v2
+      uses: actions/checkout@v4
     - name: install prerequisites
       # librsvg2-bin for rsvg-convert
       # xsltproc for xsltproc


^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [gentoo-commits] proj/devmanual:master commit in: .github/workflows/
@ 2021-10-13 14:22 Ulrich Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Ulrich Müller @ 2021-10-13 14:22 UTC (permalink / raw
  To: gentoo-commits

commit:     331f4d4d585b9ac845da732aa3b8a5ae139418c4
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 13 14:20:54 2021 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Oct 13 14:20:54 2021 +0000
URL:        https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=331f4d4d

.github/workflows/devmanual-ci.yml: Run apt-get update

As recommended in documentation.

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 .github/workflows/devmanual-ci.yml | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/devmanual-ci.yml b/.github/workflows/devmanual-ci.yml
index 7f32e80..9d8e11f 100644
--- a/.github/workflows/devmanual-ci.yml
+++ b/.github/workflows/devmanual-ci.yml
@@ -15,15 +15,17 @@ jobs:
   build:
     runs-on: ubuntu-latest # no gentoo :(
     steps:
-    - uses: actions/checkout@v2
+    - name: checkout
+      uses: actions/checkout@v2
     - name: install prerequisites
       # librsvg2-bin for rsvg-convert
       # xsltproc for xsltproc
       # libxml2-utils for xmllint
       # tidy for tidy
-      run: >
-        sudo apt install -y librsvg2-bin xsltproc libxml2-utils tidy
-        fonts-open-sans
+      run: |
+        sudo apt-get -q -y update
+        sudo apt-get -q -y install librsvg2-bin xsltproc libxml2-utils \
+        tidy fonts-open-sans
     - name: make
       run: make
     - name: make check


^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [gentoo-commits] proj/devmanual:master commit in: .github/workflows/
@ 2021-10-11 11:13 Ulrich Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Ulrich Müller @ 2021-10-11 11:13 UTC (permalink / raw
  To: gentoo-commits

commit:     3a26abf23a2ce60b41016e9bbaf753128c35d1e1
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 11 11:12:06 2021 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Oct 11 11:12:06 2021 +0000
URL:        https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=3a26abf2

.github/workflows/devmanual-ci.yml: Add license notice

Presumably this is too short to be copyrightable. Adding the header
anyway in case it may become longer.

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 .github/workflows/devmanual-ci.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/devmanual-ci.yml b/.github/workflows/devmanual-ci.yml
index a304cd8..7f32e80 100644
--- a/.github/workflows/devmanual-ci.yml
+++ b/.github/workflows/devmanual-ci.yml
@@ -1,3 +1,7 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the MIT license
+# or the CC-BY-SA-4.0 license (dual-licensed)
+
 name: Devmanual CI
 
 on:


^ permalink raw reply related	[flat|nested] 4+ messages in thread
* [gentoo-commits] proj/devmanual:master commit in: .github/workflows/
@ 2021-10-11 10:57 Ulrich Müller
  0 siblings, 0 replies; 4+ messages in thread
From: Ulrich Müller @ 2021-10-11 10:57 UTC (permalink / raw
  To: gentoo-commits

commit:     bd4d359a28ba506d8343993c8c6b9919a712a692
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 11 10:54:48 2021 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Oct 11 10:54:48 2021 +0000
URL:        https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=bd4d359a

.github/workflows: Enable CI on Github

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 .github/workflows/devmanual-ci.yml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/.github/workflows/devmanual-ci.yml b/.github/workflows/devmanual-ci.yml
new file mode 100644
index 0000000..a304cd8
--- /dev/null
+++ b/.github/workflows/devmanual-ci.yml
@@ -0,0 +1,26 @@
+name: Devmanual CI
+
+on:
+  push:
+    branches: [master]
+  pull_request:
+    branches: [master]
+  workflow_dispatch:
+
+jobs:
+  build:
+    runs-on: ubuntu-latest # no gentoo :(
+    steps:
+    - uses: actions/checkout@v2
+    - name: install prerequisites
+      # librsvg2-bin for rsvg-convert
+      # xsltproc for xsltproc
+      # libxml2-utils for xmllint
+      # tidy for tidy
+      run: >
+        sudo apt install -y librsvg2-bin xsltproc libxml2-utils tidy
+        fonts-open-sans
+    - name: make
+      run: make
+    - name: make check
+      run: make check


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-10-24 17:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-24 17:47 [gentoo-commits] proj/devmanual:master commit in: .github/workflows/ Ulrich Müller
  -- strict thread matches above, loose matches on Subject: below --
2021-10-13 14:22 Ulrich Müller
2021-10-11 11:13 Ulrich Müller
2021-10-11 10:57 Ulrich Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox