guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 55/86: Add .gitlab-ci.yml


From: Andy Wingo
Subject: [Guile-commits] 55/86: Add .gitlab-ci.yml
Date: Wed, 3 Apr 2019 11:39:00 -0400 (EDT)

wingo pushed a commit to branch lightening
in repository guile.

commit e289f881875370a21d5eea25ecfee9c8dc4af9ba
Author: Andy Wingo <address@hidden>
Date:   Tue Mar 26 11:25:49 2019 +0000

    Add .gitlab-ci.yml
---
 .gitlab-ci.yml | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..899c337
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,20 @@
+# use the official gcc image, based on debian
+# can use verions as well, like gcc:5.2
+# see https://hub.docker.com/_/gcc/
+image: gcc
+
+build:
+  stage: build
+  before_script: 
+    - apt update && apt -y install make
+  script: 
+    - make -C tests
+  cache:
+    paths:
+      - "tests/*.o"
+      - "tests/test-*"
+
+test:
+  stage: test
+  script:
+    - make -C tests check



reply via email to

[Prev in Thread] Current Thread [Next in Thread]