[release-notes/wip/hadess/add-ci] ci: Add CI




commit 6e8e62e25e4def4ee7f8563c88d6f509579988e8
Author: Bastien Nocera <hadess hadess net>
Date:   Fri Jul 23 17:30:38 2021 +0200

    ci: Add CI

 .gitlab-ci.yml | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..bafaea13
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,23 @@
+image: fedora:rawhide
+
+variables:
+  DEPENDENCIES:
+    autoconf
+    automake
+    yelp-tools
+    itstool
+
+build:
+  before_script:
+    - dnf install -y --nogpgcheck $DEPENDENCIES
+  script:
+    - mkdir _build
+    - cd _build
+    - ../autogen.sh
+    - make
+    - make install
+  artifacts:
+    when: on_success
+    name: "release-notes-${CI_COMMIT_REF_NAME}"
+    paths:
+      - "/usr/local/share/help/"


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]