-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from erikeelde/develop
Toggles core 0.0.1 release
- Loading branch information
Showing
101 changed files
with
1,649 additions
and
1,091 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Manual release workflow | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: | ||
run: | | ||
echo "${{secrets.SECRING_GPG_B64}}" > ~/.gradle/secring.gpg.b64 | ||
base64 -d ~/.gradle/secring.gpg.b64 > ~/.gradle/secring.gpg | ||
touch ~/.gradle/gradle.properties | ||
echo "signing.keyId=${{secrets.SIGNING_KEYID}}" >> ~/.gradle/gradle.properties | ||
echo "signing.password=${{secrets.SIGNING_PASSWORD}}" >> ~/.gradle/gradle.properties | ||
echo "signing.secretKeyRingFile=~/.gradle/secring.gpg" >> ~/.gradle/gradle.properties | ||
echo "mavenCentralRepositoryUsername=${{secrets.MAVEN_CENTRAL_REPOSITORY_USERNAME}}" >> ~/.gradle/gradle.properties | ||
echo "mavenCentralRepositoryPassword=${{secrets.MAVEN_CENTRAL_REPOSITORY_PASSWORD}}" >> ~/.gradle/gradle.properties | ||
- name: Check out java | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
|
||
- name: Run Detekt | ||
run: ./gradlew :toggles-core:detekt | ||
|
||
- name: Run Android Lint | ||
run: ./gradlew :toggles-core:lint | ||
|
||
- name: Run Android Unit test | ||
run: ./gradlew :toggles-core:testDebugUnitTest | ||
|
||
- name: Publish core library | ||
run: ./gradlew :toggles-core:publish --no-daemon --no-parallel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Manual release workflow | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: | ||
run: | | ||
echo "${{secrets.SECRING_GPG_B64}}" > ~/.gradle/secring.gpg.b64 | ||
base64 -d ~/.gradle/secring.gpg.b64 > ~/.gradle/secring.gpg | ||
touch ~/.gradle/gradle.properties | ||
echo "signing.keyId=${{secrets.SIGNING_KEYID}}" >> ~/.gradle/gradle.properties | ||
echo "signing.password=${{secrets.SIGNING_PASSWORD}}" >> ~/.gradle/gradle.properties | ||
echo "signing.secretKeyRingFile=~/.gradle/secring.gpg" >> ~/.gradle/gradle.properties | ||
echo "mavenCentralRepositoryUsername=${{secrets.MAVEN_CENTRAL_REPOSITORY_USERNAME}}" >> ~/.gradle/gradle.properties | ||
echo "mavenCentralRepositoryPassword=${{secrets.MAVEN_CENTRAL_REPOSITORY_PASSWORD}}" >> ~/.gradle/gradle.properties | ||
- name: Check out java | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
|
||
- name: Run Detekt | ||
run: ./gradlew :toggles-flow:detekt | ||
|
||
- name: Run Android Lint | ||
run: ./gradlew :toggles-flow:lint | ||
|
||
- name: Run Android Unit test | ||
run: ./gradlew :toggles-flow:testDebugUnitTest | ||
|
||
- name: Publish flow library | ||
run: ./gradlew :toggles-flow:publish --no-daemon --no-parallel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Manual release workflow | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
# This workflow contains a single job called "build" | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: | ||
run: | | ||
echo "${{secrets.SECRING_GPG_B64}}" > ~/.gradle/secring.gpg.b64 | ||
base64 -d ~/.gradle/secring.gpg.b64 > ~/.gradle/secring.gpg | ||
touch ~/.gradle/gradle.properties | ||
echo "signing.keyId=${{secrets.SIGNING_KEYID}}" >> ~/.gradle/gradle.properties | ||
echo "signing.password=${{secrets.SIGNING_PASSWORD}}" >> ~/.gradle/gradle.properties | ||
echo "signing.secretKeyRingFile=~/.gradle/secring.gpg" >> ~/.gradle/gradle.properties | ||
echo "mavenCentralRepositoryUsername=${{secrets.MAVEN_CENTRAL_REPOSITORY_USERNAME}}" >> ~/.gradle/gradle.properties | ||
echo "mavenCentralRepositoryPassword=${{secrets.MAVEN_CENTRAL_REPOSITORY_PASSWORD}}" >> ~/.gradle/gradle.properties | ||
- name: Check out java | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
|
||
- name: Run Detekt | ||
run: ./gradlew :toggles-prefs:detekt | ||
|
||
- name: Run Android Lint | ||
run: ./gradlew :toggles-prefs:lint | ||
|
||
- name: Run Android Unit test | ||
run: ./gradlew :toggles-prefs:testDebugUnitTest | ||
|
||
- name: Publish core library | ||
run: ./gradlew :toggles-prefs:publish --no-daemon --no-parallel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,15 +6,15 @@ | |
# http://www.gradle.org/docs/current/userguide/build_environment.html | ||
# Specifies the JVM arguments used for the daemon process. | ||
# The setting is particularly useful for tweaking memory settings. | ||
org.gradle.jvmargs=-Xmx2g | ||
org.gradle.jvmargs=-Xmx2g -Xms500m -Dfile.encoding=UTF-8 | ||
|
||
# When configured, Gradle will run in incubating parallel mode. | ||
# This option should only be used with decoupled projects. More details, visit | ||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects | ||
# org.gradle.parallel=true | ||
VERSION_NAME=0.3 | ||
VERSION_CODE=5 | ||
GROUP=se.eelde.toggles | ||
POM_DESCRIPTION=Toggles | ||
POM_INCEPTION_YEAR=2018 | ||
POM_URL=https://github.com/erikeelde/toggles | ||
POM_SCM_URL=https://github.com/erikeelde/toggles | ||
POM_SCM_CONNECTION=scm:[email protected]:erikeelde/toggles.git | ||
|
@@ -24,10 +24,20 @@ POM_LICENCE_URL=https://raw.githubusercontent.com/erikeelde/toggles/master/LICEN | |
POM_LICENCE_DIST=repo | ||
POM_DEVELOPER_ID=erikeelde, warting | ||
POM_DEVELOPER_NAME=Erik Eelde, Stefan Wärting | ||
|
||
RELEASE_REPOSITORY_URL=https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ | ||
SNAPSHOT_REPOSITORY_URL=https://s01.oss.sonatype.org/content/repositories/snapshots/ | ||
# Enable rudimentary R class namespacing where each library only contains | ||
# references to the resources it declares instead of declarations plus all | ||
# transitive dependency references. | ||
# android.namespacedRClass=false # deprecated - use android.nonTransitiveRClass now | ||
android.nonTransitiveRClass=false | ||
android.useAndroidX=true | ||
android.enableJetifier=false | ||
|
||
#kotlin.caching.enabled=true # default false | ||
#kotlin.incremental.usePreciseJavaTracking=true #default false | ||
#kapt.use.worker.api=true | ||
#kapt.include.compile.classpath=false | ||
#kapt.incremental.apt=true | ||
#kotlin.parallel.tasks.in.project=true |
Oops, something went wrong.