Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fulton committed Dec 31, 2019
1 parent 3fa2a91 commit 6400e59
Show file tree
Hide file tree
Showing 18 changed files with 77 additions and 62 deletions.
Binary file added .gradle/4.4.1/fileChanges/last-build.bin
Binary file not shown.
Binary file added .gradle/4.4.1/fileHashes/fileHashes.bin
Binary file not shown.
Binary file added .gradle/4.4.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified .gradle/5.2.1/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified .gradle/5.2.1/fileHashes/fileHashes.lock
Binary file not shown.
Binary file added .gradle/5.2.1/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file added .gradle/5.2.1/javaCompile/classAnalysis.bin
Binary file not shown.
Binary file added .gradle/5.2.1/javaCompile/jarAnalysis.bin
Binary file not shown.
Binary file modified .gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

84 changes: 26 additions & 58 deletions .idea/workspace.xml

Large diffs are not rendered by default.

42 changes: 42 additions & 0 deletions config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Java Gradle CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:8-jdk

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4

working_directory: ~/repo

environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx3200m
TERM: dumb

steps:
- checkout

# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "build.gradle" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: gradle dependencies

- save_cache:
paths:
- ~/.gradle
key: v1-dependencies-{{ checksum "build.gradle" }}

# run tests!
- run: gradle test
6 changes: 3 additions & 3 deletions light/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ dependencies {
implementation ('com.microsoft.azure.sdk.iot:iot-device-client:1.14.2')

}
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_12
targetCompatibility = JavaVersion.VERSION_12
compileKotlin {
kotlinOptions {
jvmTarget = "12"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "12"
}
}
Binary file not shown.
Binary file modified light/build/kotlin/compileKotlin/build-history.bin
Binary file not shown.
4 changes: 4 additions & 0 deletions light/build/kotlin/compileKotlin/dirty-sources.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/home/fulton/Desktop/code/Ara-IOT/light/src/main/java/com/andromeda/iot/light/Listener.kt
/home/fulton/Desktop/code/Ara-IOT/light/src/main/java/com/andromeda/iot/light/BlueTooth.kt
/home/fulton/Desktop/code/Ara-IOT/light/src/main/java/com/andromeda/iot/light/main.kt
/home/fulton/Desktop/code/Ara-IOT/light/src/main/java/com/andromeda/iot/light/NfcData.kt
1 change: 1 addition & 0 deletions light/build/kotlin/lightjar-classes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/home/fulton/Desktop/code/Ara-IOT/light/build/classes/java/main/com/andromeda/iot/light/ReadData.class:/home/fulton/Desktop/code/Ara-IOT/light/build/classes/kotlin/main/com/andromeda/iot/light/Listener$Counter.class:/home/fulton/Desktop/code/Ara-IOT/light/build/classes/kotlin/main/com/andromeda/iot/light/Listener$IotHubConnectionStatusChangeCallbackLogger$WhenMappings.class:/home/fulton/Desktop/code/Ara-IOT/light/build/classes/kotlin/main/com/andromeda/iot/light/Listener$IotHubConnectionStatusChangeCallbackLogger.class:/home/fulton/Desktop/code/Ara-IOT/light/build/classes/kotlin/main/com/andromeda/iot/light/Listener$MessageCallback.class:/home/fulton/Desktop/code/Ara-IOT/light/build/classes/kotlin/main/com/andromeda/iot/light/Listener$MessageCallbackMqtt.class:/home/fulton/Desktop/code/Ara-IOT/light/build/classes/kotlin/main/com/andromeda/iot/light/Listener.class:/home/fulton/Desktop/code/Ara-IOT/light/build/classes/kotlin/main/com/andromeda/iot/light/MainKt.class
Binary file added light/build/libs/light.jar
Binary file not shown.

0 comments on commit 6400e59

Please sign in to comment.