-
Notifications
You must be signed in to change notification settings - Fork 1
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 #65 from boschglobal/feature-64
Provide Signed .apk for TestApp
- Loading branch information
Showing
11 changed files
with
174 additions
and
42 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,38 @@ | ||
name: Release apk | ||
description: Decodes any provided Keystore and creates a signed .apk with this. | ||
|
||
inputs: | ||
keystore: | ||
description: "Keystore Base64 encoded" | ||
required: true | ||
key_alias: | ||
description: "Keystore alias" | ||
required: true | ||
key_password: | ||
description: "Keystore password" | ||
required: true | ||
store_password: | ||
description: "Store password" | ||
required: true | ||
gradle_task: | ||
description: "Gradle Task to execute" | ||
required: false | ||
default: assembleRelease | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Decode Keystore | ||
uses: timheuer/base64-to-file@v1 | ||
with: | ||
fileName: 'keystore.jks' | ||
encodedString: ${{ inputs.keystore }} | ||
|
||
- name: Create .apk file | ||
env: | ||
SIGNING_KEY_ALIAS: ${{ inputs.key_alias }} | ||
SIGNING_KEY_PASSWORD: ${{ inputs.key_password }} | ||
SIGNING_STORE_PASSWORD: ${{ inputs.store_password }} | ||
KEYSTORE_PATH: ${{ runner.temp }}/keystore.jks | ||
shell: bash | ||
run: ./gradlew ${{ inputs.gradle_task }} |
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,13 @@ | ||
name: Setup project | ||
description: Setups the gradle and java environment | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 |
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,46 @@ | ||
name: Build Main | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-project: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Project | ||
uses: ./.github/actions/setup-project | ||
|
||
- name: Update Version | ||
run: npm run bump-release # Updates the semantic version depending on the last commits e.g. feature / bugfix | ||
|
||
- name: Set Snapshot Version | ||
run: ./gradlew setSnapshotVersion # Do not chain this command because it writes into a file which needs to be re-read inside the next gradle command | ||
|
||
- name: Build SDK TestApp | ||
uses: ./.github/actions/create-release-apk | ||
with: | ||
keystore: ${{ secrets.KEYSTORE_DEBUG }} | ||
key_alias: ${{ secrets.SIGNING_KEY_ALIAS }} | ||
key_password: ${{ secrets.SIGNING_KEY_PASSWORD }} | ||
store_password: ${{ secrets.SIGNING_STORE_PASSWORD }} | ||
gradle_task: app:assembleRelease | ||
|
||
- name: Archive .apk file | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: kuksa_sdk_testapp.apk | ||
path: app/build/outputs/apk/release/app-release.apk | ||
if-no-files-found: error | ||
retention-days: 14 | ||
|
||
- name: Archive changelog | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: CHANGELOG.md | ||
path: CHANGELOG.md | ||
retention-days: 14 |
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
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
35 changes: 35 additions & 0 deletions
35
buildSrc/src/main/kotlin/org/eclipse/kuksa/property/PropertiesLoader.kt
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,35 @@ | ||
/* | ||
* Copyright (c) 2023 Contributors to the Eclipse Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.eclipse.kuksa.property | ||
|
||
import java.io.File | ||
import java.util.Properties | ||
|
||
class PropertiesLoader { | ||
fun load(path: String): Properties? { | ||
val properties = File(path) | ||
if (!properties.exists()) return null | ||
|
||
properties.reader().use { reader -> | ||
return Properties().apply { | ||
load(reader) | ||
} | ||
} | ||
} | ||
} |