rendercheck: 2 commits - .gitlab-ci.yml t_repeat.c t_triangles.c

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Jul 21 23:06:28 UTC 2022


 .gitlab-ci.yml |   95 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 t_repeat.c     |    2 -
 t_triangles.c  |    2 -
 3 files changed, 97 insertions(+), 2 deletions(-)

New commits:
commit 67a820621b1475ebfcf3d4f9d7f03a5fc3b9769a
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Thu Jul 21 16:00:39 2022 -0700

    t_repeat.c, t_triangles.c: convert from ISO-8859-1 to UTF-8
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

diff --git a/t_repeat.c b/t_repeat.c
index 36e69e1..818e83d 100644
--- a/t_repeat.c
+++ b/t_repeat.c
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2006 Eric Anholt
+ * Copyright © 2006 Eric Anholt
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
diff --git a/t_triangles.c b/t_triangles.c
index 9fbbf1e..9cae8dc 100644
--- a/t_triangles.c
+++ b/t_triangles.c
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2006 Eric Anholt
+ * Copyright © 2006 Eric Anholt
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
commit b91c472d0b2e651893d6d94aa938f2351ba90c5a
Author: Alan Coopersmith <alan.coopersmith at oracle.com>
Date:   Thu Jul 21 15:49:52 2022 -0700

    gitlab CI: add a basic build test
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith at oracle.com>

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..4665563
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,95 @@
+# vim: set expandtab shiftwidth=2 tabstop=8 textwidth=0 filetype=yaml:
+#
+# This CI uses the freedesktop.org ci-templates.
+# Please see the ci-templates documentation for details:
+# https://freedesktop.pages.freedesktop.org/ci-templates/
+
+.templates_sha: &template_sha 34f4ade99434043f88e164933f570301fd18b125 # see https://docs.gitlab.com/ee/ci/yaml/#includefile
+
+
+include:
+  # Arch container builder template
+  - project: 'freedesktop/ci-templates'
+    ref: *template_sha
+    file: '/templates/arch.yml'
+  - project: 'freedesktop/ci-templates'
+    ref: *template_sha
+    file: '/templates/ci-fairy.yml'
+  - template: Security/SAST.gitlab-ci.yml
+
+
+stages:
+  - prep             # prep work like rebuilding the container images if there is a change
+  - build            # for actually building and testing things in a container
+  - test
+  - deploy
+
+
+variables:
+  FDO_UPSTREAM_REPO: 'xorg/test/rendercheck'
+  # The tag should be updated each time the list of packages is updated.
+  # Changing a tag forces the associated image to be rebuilt.
+  # Note: the tag has no meaning, we use a date format purely for readability
+  FDO_DISTRIBUTION_TAG:  '2022-07-21.1'
+  FDO_DISTRIBUTION_PACKAGES: 'git meson pkgconf ninja gcc xorgproto libx11 libxext libxrender'
+
+
+#
+# Verify that commit messages are as expected
+#
+check-commits:
+  extends:
+    - .fdo.ci-fairy
+  stage: prep
+  script:
+    - ci-fairy check-commits --junit-xml=results.xml
+  except:
+    - master at xorg/test/rendercheck
+  variables:
+    GIT_DEPTH: 100
+  artifacts:
+    reports:
+      junit: results.xml
+
+#
+# Verify that the merge request has the allow-collaboration checkbox ticked
+#
+check-merge-request:
+  extends:
+    - .fdo.ci-fairy
+  stage: deploy
+  script:
+    - ci-fairy check-merge-request --require-allow-collaboration --junit-xml=results.xml
+  artifacts:
+    when: on_failure
+    reports:
+      junit: results.xml
+  allow_failure: true
+
+
+#
+# Build a container with the given tag and the packages pre-installed.
+# This only happens if/when the tag changes, otherwise the existing image is
+# re-used.
+#
+container-prep:
+  extends:
+    - .fdo.container-build at arch
+  stage: prep
+  variables:
+    GIT_STRATEGY: none
+
+#
+# Builds run on the image built above.
+#
+
+meson:
+  extends:
+    - .fdo.distribution-image at arch
+  stage: build
+  script:
+    - mkdir -p ../_inst
+    - meson _builddir --prefix="$PWD/../_inst"
+    - meson configure _builddir
+    - ninja -C _builddir test
+    - ninja -C _builddir install


More information about the xorg-commit mailing list