Browse Source

Updates

tags/v0.0.25^0
Peter Vivell 6 years ago
parent
commit
9cbbe8774c
3 changed files with 19 additions and 45 deletions
  1. 4
    37
      CHANGELOG.md
  2. 3
    2
      RELEASE.md
  3. 12
    6
      drone.yml

+ 4
- 37
CHANGELOG.md View File

1
-# radangel change Log
1
+# Radangel Change Log
2
 
2
 
3
 All notable changes to this project will be documented in this file.
3
 All notable changes to this project will be documented in this file.
4
 
4
 
5
-
6
 ## 0.0.1
5
 ## 0.0.1
7
 
6
 
8
-- Initial release
9
-
10
-## 0.0.2
11
-
12
-- Build test
13
-
14
-## 0.0.3
15
-
16
-- Release test
17
-
18
-## 0.0.4
19
-
20
-- Cache test
21
-
22
-## 0.0.5
23
-
24
-- Depend test
25
-
26
-## 0.0.6
27
-
28
-- Drone test
29
-
30
-## 0.0.7
31
-
32
-- Drone test
33
-
34
-## 0.0.8
35
-
36
-- Archive test
37
-
38
-## 0.0.9
39
-
40
-- Archive test
7
+- Initial release.
41
 
8
 
42
-## 0.0.10
9
+## 0.0.25
43
 
10
 
44
-- Release test
11
+- Improved make system.

+ 3
- 2
RELEASE.md View File

1
 ### Features and Improvements:
1
 ### Features and Improvements:
2
 * Binaries functional on Debian 9 and Ubuntu 18.04.
2
 * Binaries functional on Debian 9 and Ubuntu 18.04.
3
-* Archive of root file system.
3
+* Archives for root file system.
4
 
4
 
5
 ### Changes and Fixes:
5
 ### Changes and Fixes:
6
+* Make system works with GNU Make.
6
 * Build system functional and able to release.
7
 * Build system functional and able to release.
7
 
8
 
8
 ### Contributions:
9
 ### Contributions:
9
 * Patience.
10
 * Patience.
10
-
11
+* Fun.

+ 12
- 6
drone.yml View File

22
         Acquire::http  { Proxy "http://172.17.0.1:3142"; }
22
         Acquire::http  { Proxy "http://172.17.0.1:3142"; }
23
         Acquire::https { Proxy "https://"; };
23
         Acquire::https { Proxy "https://"; };
24
       EOF
24
       EOF
25
-    - apt-get update && apt-get -y upgrade && apt-get -y install $BUILDDEPS
25
+    - apt-get update && 
26
+      apt-get -y upgrade && 
27
+      apt-get -y install $BUILDDEPS
26
     - export MAKEFLAGS && make
28
     - export MAKEFLAGS && make
27
     - CONTENT=${DRONE_REPO_NAME}
29
     - CONTENT=${DRONE_REPO_NAME}
28
-    - RELEASE=${DRONE_REPO_NAME}-bin
29
-    - test -n "${DRONE_TAG}" && RELEASE=$RELEASE-${DRONE_TAG}
30
+    - test -n "${DRONE_TAG}" && 
31
+      RELEASE=${DRONE_REPO_NAME}-${DRONE_TAG}-bin || 
32
+      RELEASE=${DRONE_REPO_NAME}-bin
30
     - mv dist $CONTENT
33
     - mv dist $CONTENT
31
-    - ls -la $CONTENT ; find $CONTENT -type f -exec md5sum '{}' \;
32
-    - rm -rf release ; mkdir release
34
+    - ls -la $CONTENT ; 
35
+      find $CONTENT -type f -exec md5sum '{}' \;
36
+    - rm -rf release ; 
37
+      mkdir release
33
     - zip -rp   release/$RELEASE.zip    $CONTENT
38
     - zip -rp   release/$RELEASE.zip    $CONTENT
34
     - tar -czvf release/$RELEASE.tar.gz $CONTENT
39
     - tar -czvf release/$RELEASE.tar.gz $CONTENT
35
     - tar -cJvf release/$RELEASE.tar.xz $CONTENT
40
     - tar -cJvf release/$RELEASE.tar.xz $CONTENT
36
     - rm -rf $CONTENT
41
     - rm -rf $CONTENT
37
-    - ls -la release ; find release -type f -exec md5sum '{}' \;
42
+    - ls -la release ; 
43
+      find release -type f -exec md5sum '{}' \;
38
     - echo "BUILD FINISHED."
44
     - echo "BUILD FINISHED."
39
 
45
 
40
 # http://plugins.drone.io/drone-plugins/drone-gitea-release/
46
 # http://plugins.drone.io/drone-plugins/drone-gitea-release/

Loading…
Cancel
Save