Skip to content

Commit

Permalink
Update CI files
Browse files Browse the repository at this point in the history
  • Loading branch information
praveek committed Feb 1, 2024
1 parent 29b29ed commit c8c3de1
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 19 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
version: 2.1

orbs:
android: circleci/[email protected]
android: circleci/android@2.4.0
codecov: codecov/[email protected]

jobs:
build-and-unit-test:
executor:
name: android/android-machine
resource-class: large
tag: 2022.01.1
tag: 2024.01.1

steps:
- checkout
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
executor:
name: android/android-machine
resource-class: large
tag: 2022.01.1
tag: 2024.01.1

steps:
- checkout
Expand All @@ -127,7 +127,7 @@ jobs:
executor:
name: android/android-machine
resource-class: large
tag: 2022.01.1
tag: 2024.01.1

steps:
- checkout
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: main
- uses: actions/checkout@v3

- name: Set up Java
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'zulu'
java-version: 17

- name: Cache Gradle packages
uses: actions/cache@v2
Expand Down Expand Up @@ -66,7 +65,7 @@ jobs:
echo $GPG_SECRET_KEYS | base64 --decode | gpg --import --no-tty --batch --yes
echo $GPG_OWNERTRUST | base64 --decode | gpg --import-ownertrust --no-tty --batch --yes
- name: Publish to maven central repository
- name: Publish to Maven Central Repository
run: make ${{ github.event.inputs.extension }}-publish-main
env:
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/maven-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,13 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Java
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'zulu'
java-version: 17

- name: Cache Gradle packages
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v3.1.0
uses: actions/checkout@v3

- if: ${{ github.event.inputs.core-version != '' }}
name: Update Core Version
Expand Down
6 changes: 1 addition & 5 deletions jitpack.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
jdk:
- openjdk11
# before_install:
# - ./custom_setup.sh
- openjdk17
install:
- echo "Running a custom install command"
- make core-publish-maven-local-jitpack
- make signal-publish-maven-local-jitpack
- make lifecycle-publish-maven-local-jitpack
- make identity-publish-maven-local-jitpack
# env:
# MYVAR: "custom environment variable"

0 comments on commit c8c3de1

Please sign in to comment.