From 0692dde06d2ac8b6878ce05881bd87c6b7e0665e Mon Sep 17 00:00:00 2001
From: Eliot Berriot <contact@eliotberriot.com>
Date: Sun, 25 Jun 2017 18:22:17 +0200
Subject: [PATCH] Missing container name in gitlabci

---
 .gitlab-ci.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bc8d4267..b9f4c525 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,6 +1,6 @@
 stages:
-  - build
   - test
+  - build
 
 test_api:
   stage: test
@@ -9,7 +9,7 @@ test_api:
   script:
     - docker-compose -f api/test.yml run test
   after_script:
-    - docker-compose -f api/test.yml run rm -rf api/funkwhale_api/media/*
+    - docker-compose -f api/test.yml run test rm -rf api/funkwhale_api/media/*
 
   tags:
     - dind
@@ -37,6 +37,7 @@ build_front:
   tags:
     - docker
 
+
 # When using dind, it's wise to use the overlayfs driver for
 # improved performance.
 # variables:
-- 
GitLab