dev -> staging (Core 3.3.0) (Identity 3.0.2) (Lifecycle 3.0.2) (Signal 3.0.1) #9
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
# | |
# Copyright 2025 Adobe. All rights reserved. | |
# This file is licensed to you 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 REPRESENTATIONS | |
# OF ANY KIND, either express or implied. See the License for the specific language | |
# governing permissions and limitations under the License. | |
# | |
name: Build and Test | |
on: | |
pull_request: | |
jobs: | |
build-core-artifact: | |
name: "Build Artifacts" | |
uses: adobe/aepsdk-commons/.github/workflows/[email protected] | |
with: | |
android-api-levels: '[29]' | |
command: make core-publish-maven-local-jitpack | |
upload-artifacts-path: code/core/build/libs | |
upload-artifacts-name: core.aar | |
upload-artifacts-name-timstamp: true | |
secrets: inherit | |
build-signal-artifact: | |
name: "Build Artifacts" | |
uses: adobe/aepsdk-commons/.github/workflows/[email protected] | |
with: | |
android-api-levels: '[29]' | |
command: make signal-publish-maven-local-jitpack | |
upload-artifacts-path: code/signal/build/libs | |
upload-artifacts-name: signal.aar | |
upload-artifacts-name-timstamp: true | |
secrets: inherit | |
build-lifecycle-artifact: | |
name: "Build Artifacts" | |
uses: adobe/aepsdk-commons/.github/workflows/[email protected] | |
with: | |
android-api-levels: '[29]' | |
command: make lifecycle-publish-maven-local-jitpack | |
upload-artifacts-path: code/lifecycle/build/libs | |
upload-artifacts-name: lifecycle.aar | |
upload-artifacts-name-timstamp: true | |
secrets: inherit | |
build-identity-artifact: | |
name: "Build Artifacts" | |
uses: adobe/aepsdk-commons/.github/workflows/[email protected] | |
with: | |
android-api-levels: '[29]' | |
command: make identity-publish-maven-local-jitpack | |
upload-artifacts-path: code/identity/build/libs | |
upload-artifacts-name: identity.aar | |
upload-artifacts-name-timstamp: true | |
secrets: inherit | |
api-check: | |
name: "API Check" | |
uses: adobe/aepsdk-commons/.github/workflows/[email protected] | |
with: | |
android-api-levels: '[29]' | |
command: make api-check | |
secrets: inherit | |
build-and-test: | |
name: "CI" | |
uses: adobe/aepsdk-commons/.github/workflows/[email protected] | |
with: | |
android-api-levels: '[29]' | |
run-test-unit: true | |
run-test-functional: true | |
run-test-integration: true | |
enable-codecov: true | |
javadoc-build-path: code/core/build/dokka/javadoc | |
secrets: inherit |