-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: disable publishing with Circle CI
- Loading branch information
1 parent
f8e557a
commit c1c74c8
Showing
1 changed file
with
0 additions
and
33 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 |
---|---|---|
|
@@ -62,36 +62,6 @@ jobs: | |
name: Test Frameworks | ||
command: scripts/testPrebidMobile.sh | ||
|
||
# Below is the definition of your job to build and test your app, you can rename and customize it as you want. | ||
generate-documentation: | ||
# These next lines define the Android machine image executor. | ||
# See: https://circleci.com/docs/2.0/executor-types/ | ||
executor: | ||
name: android/android-machine | ||
tag: default | ||
# Add steps to the job | ||
# See: https://circleci.com/docs/2.0/configuration-reference/#steps | ||
steps: | ||
# Checkout the code as the first step. | ||
- checkout | ||
- android/change-java-version: | ||
java-version: 17 | ||
# And finally run the release build | ||
- run: | ||
name: Test Frameworks | ||
command: | | ||
./gradlew :PrebidMobile:combinedJavadoc | ||
git config --local user.name "CircleCI" && git config --local user.email "[email protected]" | ||
git checkout docs | ||
git pull --rebase | ||
rm -rf docs | ||
cp -r PrebidMobile/build/combinedJavadoc docs | ||
git add ./docs | ||
git commit -m "Javadoc publication" | ||
git push | ||
- store_artifacts: | ||
path: ./PrebidMobile/build/combinedJavadoc | ||
|
||
# Invoke jobs via workflows | ||
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows | ||
workflows: | ||
|
@@ -111,6 +81,3 @@ workflows: | |
name: Run Unit Tests - Prebid Mobile | ||
- android-test: | ||
name: Run Smoke UI Tests - Demo App Kotlin - Android 11 | ||
# TODO: Move to release branch only | ||
- generate-documentation: | ||
name: Generating documentation |