From 73d6de93bafc5d40783611eecd7d7f012fa08bdc Mon Sep 17 00:00:00 2001
From: Raymond Toy <toy.raymond@gmail.com>
Date: Sat, 10 Apr 2021 11:03:40 -0700
Subject: [PATCH] Fix #105: Include build logs in artifacts

Include the build logs in the artifacts so we can examine the logs to
see what happened when a build fails.
---
 .gitlab-ci.yml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 48a8d59c1..1de10845c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -33,6 +33,9 @@ linux:build:
   artifacts:
     paths:
       - dist/
+      - linux-2/*.log
+      - linux-3/*.log
+      - linux-4/*.log
   needs:
     - job: linux:install
       artifacts: true
@@ -117,6 +120,9 @@ osx:build:
   artifacts:
     paths:
       - dist/
+      - darwin-2/*.log
+      - darwin-3/*.log
+      - darwin-4/*.log
   needs:
     - job: osx:install
       artifacts: true
-- 
GitLab