From d911f87a2a47b8ad8502b9e41447809d3c01b958 Mon Sep 17 00:00:00 2001
From: Johannes Mey <johannes.mey@tu-dresden.de>
Date: Sat, 9 May 2020 14:12:26 +0200
Subject: [PATCH] try to fix CI

---
 .gitlab-ci.yml                      | 5 +++--
 kernel/compile.bash => compile.bash | 6 +++++-
 kernel/config => config             | 0
 3 files changed, 8 insertions(+), 3 deletions(-)
 rename kernel/compile.bash => compile.bash (95%)
 rename kernel/config => config (100%)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0802d23..a058133 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,10 +6,11 @@ build-kernel:
   stage: build
   artifacts:
     paths:
-      - kernel/*.deb
+      - "*.deb"
+      - "*/*.deb"
   script:
     - apt-get update
     - apt-get install -y build-essential curl bison flex bc rsync kmod cpio lsb-release libssl-dev
-    - cd kernel; ./compile.bash
+    - ./compile.bash
   tags:
   - highmem
diff --git a/kernel/compile.bash b/compile.bash
similarity index 95%
rename from kernel/compile.bash
rename to compile.bash
index c0dee08..9bebf1c 100755
--- a/kernel/compile.bash
+++ b/compile.bash
@@ -52,4 +52,8 @@ cp ../config .config
 make olddefconfig
 make deb-pkg
 
-mv *.deb ..
+# show current directory (for debug)
+ls .
+
+# show parent directory (for debug)
+ls ..
diff --git a/kernel/config b/config
similarity index 100%
rename from kernel/config
rename to config
-- 
GitLab