Browse Source

Update

tags/v0.0.64
Peter Vivell 6 years ago
parent
commit
0f31211404
1 changed files with 5 additions and 4 deletions
  1. 5
    4
      drone.yml

+ 5
- 4
drone.yml View File

@@ -51,7 +51,7 @@ steps:
51 51
     event: [ push, tag ]
52 52
   depends_on: [ clone, prepare ]
53 53
   environment:
54
-    MAKEFLAGS: -j 2
54
+    MAKEFLAGS: -j2
55 55
     # https://wiki.debian.org/CrossCompiling#Building_with_dpkg-buildpackage
56 56
     # https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html
57 57
     # https://www.gnu.org/software/make/manual/html_node/Catalogue-of-Rules.html#Catalogue-of-Rules
@@ -76,7 +76,7 @@ steps:
76 76
         -cJf "$${SRC_DIR}/$${RELEASE_DIR}/$${ARCHIVE_NAME}.orig.tar.xz" .
77 77
 
78 78
     - for ARCH in $${BUILD_ARCH} ; do set -e ;
79
-        echo " ░▒▓█ Building for $${ARCH} █▓▒░ " ;
79
+        echo " ░▒▓█ BUILDING for architecture \"$${ARCH}\" █▓▒░ " ;
80 80
         BUILD_DIR="$${SRC_DIR}/build/$${ARCH}/$${ARCHIVE_ROOT}" ;
81 81
         case "$${ARCH}" in 
82 82
           amd64)    PREFIX="x86_64-linux-gnu-"        ;;
@@ -127,9 +127,10 @@ steps:
127 127
           ls -la "$${RELEASE_DIR}/$${ARCHIVE_NAME}.$${ARCH}.tar.xz" ;
128 128
           make clean ;
129 129
         fi ;
130
+        cd "$${SRC_DIR}"
130 131
       done
131
-    - ls -la "$${RELEASE_DIR}" &&
132
-      find "$${RELEASE_DIR}" -type f -exec md5sum '{}' \;
132
+    - ls -la "$${SRC_DIR}/$${RELEASE_DIR} &&
133
+      find "$${RELEASE_DIR} -type f -exec md5sum '{}' \;
133 134
     - exit 0 ; ░▒▓█ BUILD END █▓▒░
134 135
 
135 136
 

Loading…
Cancel
Save