From c28ef0a933d21ee6a52ceb24b9834a42a1506e7c Mon Sep 17 00:00:00 2001 From: Schoumi Date: Wed, 9 Nov 2016 01:18:22 +0000 Subject: [PATCH 1/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4c1598c..bf8995c 100644 --- a/README.md +++ b/README.md @@ -7,4 +7,4 @@ Lpcprog let you find and flash your NXP LPC Microcontroller. * Flash your software found on your device or on a webserver * HTTP & HTTPS support -[//]: # (Download it on the playstore: https://play.google.com/store/apps/details?id=fr.mobdev.lpcprog) +Download it on the playstore: https://play.google.com/store/apps/details?id=fr.mobdev.lpcprog From d64e978a3148ad97e1b3a6b9a544fb8c0473ad4c Mon Sep 17 00:00:00 2001 From: Schoumi Date: Thu, 12 Jan 2017 23:48:08 +0000 Subject: [PATCH 2/6] Add .gitlab-ci.yml --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..694aa90 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +image: openjdk:8-jdk + +variables: + GRADLE_VERSION: "2.14.1" + +before_script: + - gradle wrapper --gradle-version ${GRADLE_VERSION} -Dcom.android.build.gradle.overrideVersionCheck=true + +stages: + - build + +build: + stage: build + script: + - ./gradlew assembleDebug + artifacts: + paths: + - app/build/outputs/ \ No newline at end of file From 566938ee9a8098f55879c6a01f4b5789ea1d219e Mon Sep 17 00:00:00 2001 From: Schoumi Date: Thu, 12 Jan 2017 23:50:39 +0000 Subject: [PATCH 3/6] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index bf8995c..2253d5d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Lpcprog +[![build status](https://git.mob-dev.fr/Schoumi/Goblim/badges/master/build.svg)](https://git.mob-dev.fr/Schoumi/Goblim/commits/master) + Lpcprog is an Android application. Lpcprog let you find and flash your NXP LPC Microcontroller. From aa1c5f899519adadfce755506177ee36087718b4 Mon Sep 17 00:00:00 2001 From: Schoumi Date: Thu, 12 Jan 2017 23:54:05 +0000 Subject: [PATCH 4/6] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 2253d5d..89a438a 100644 --- a/README.md +++ b/README.md @@ -10,3 +10,6 @@ Lpcprog let you find and flash your NXP LPC Microcontroller. * HTTP & HTTPS support Download it on the playstore: https://play.google.com/store/apps/details?id=fr.mobdev.lpcprog + +
+ \ No newline at end of file From 886a035c1d1cd0cb8acf06403c0236755bfaa243 Mon Sep 17 00:00:00 2001 From: Schoumi Date: Thu, 12 Jan 2017 23:57:21 +0000 Subject: [PATCH 5/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 89a438a..d552237 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Lpcprog -[![build status](https://git.mob-dev.fr/Schoumi/Goblim/badges/master/build.svg)](https://git.mob-dev.fr/Schoumi/Goblim/commits/master) +[![build status](https://git.mob-dev.fr/Schoumi/lpcprog/badges/master/build.svg)](https://git.mob-dev.fr/Schoumi/lpcprog/commits/master) Lpcprog is an Android application. Lpcprog let you find and flash your NXP LPC Microcontroller. From 9745d10f0d27c061e1abae2fdb037ad222e38f94 Mon Sep 17 00:00:00 2001 From: Schoumi Date: Sun, 15 Jan 2017 19:49:02 +0000 Subject: [PATCH 6/6] Update .gitlab-ci.yml --- .gitlab-ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 694aa90..09beb67 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,3 @@ -image: openjdk:8-jdk - variables: GRADLE_VERSION: "2.14.1"