Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 8 additions & 16 deletions .github/config/build-strategy-matrix.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,16 @@
{
"include" : [
"include": [
{
"module": "core",
"artifactName": "core"
"module": "common",
"artifactName": "common"
},
{
"module": "kxs",
"artifactName": "kxs"
"module": "json",
"artifactName": "json"
},
{
"module": "io",
"artifactName": "io"
},
{
"module": "kxs-io",
"artifactName": "kxs-io"
},
{
"module": "oid",
"artifactName": "oids"
"module": "yaml",
"artifactName": "yaml"
}
]
}
}
12 changes: 0 additions & 12 deletions .github/workflows/guard-main.yml

This file was deleted.

20 changes: 7 additions & 13 deletions .github/workflows/publish-dry-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,11 @@ jobs:
KOTLIN_VERSION_ENV: ${{ inputs.kotlin-version }}
TESTBALLOON_VERSION_OVERRIDE: ${{ inputs.testballoon-version }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- uses: maxim-lobanov/setup-xcode@v1
- name: Common Setup
uses: a-sit-plus/internal-workflows/.github/actions/common-setup@v2
with:
xcode-version: 16.2.0
override-cache: 'false'
setup-xcode: 'true'
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
Expand All @@ -54,11 +48,11 @@ jobs:
if: success() || failure() # always run so the table appears even if publish failed
shell: bash
run: |
ART_DIR="./repo/at/asitplus/awesn1"
ART_DIR="./repo/at/asitplus/propigator"
ls -la $ART_DIR
# Header
{
echo "### Maven-local artifacts for \`at.asitplus.awesn1\`"
echo "### Maven-local artifacts for \`at.asitplus.propigator\`"
echo ""
echo "| Module | Version | File |"
echo "|--------|---------|------|"
Expand Down Expand Up @@ -102,4 +96,4 @@ jobs:
path: './build/docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v4
10 changes: 3 additions & 7 deletions .github/workflows/publish-pages-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,10 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Common Setup
uses: a-sit-plus/internal-workflows/.github/actions/common-setup@v2
with:
submodules: recursive
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
override-cache: 'false'
- name: Build Dokka HTML
run: ./gradlew dokkaGenerate
- name: Setup Pages
Expand Down
39 changes: 13 additions & 26 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,18 @@ jobs:
runs-on: macos-latest
timeout-minutes: 300
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Common Setup
uses: a-sit-plus/internal-workflows/.github/actions/common-setup@v2
with:
submodules: recursive
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.2.0
- name: Publish modules serially to Sonatype
override-cache: 'true'
setup-xcode: 'true'

- name: Publish Propigator modules serially to Sonatype
run: |
./gradlew clean
./gradlew :core:publishToSonatype closeSonatypeStagingRepository
./gradlew :crypto:publishToSonatype closeSonatypeStagingRepository
./gradlew :internal-utils:publishToSonatype closeSonatypeStagingRepository
./gradlew :io:publishToSonatype closeSonatypeStagingRepository
./gradlew :kxs:publishToSonatype closeSonatypeStagingRepository
./gradlew :kxs-io:publishToSonatype closeSonatypeStagingRepository
./gradlew :oids:publishToSonatype closeSonatypeStagingRepository
./gradlew :common:publishToSonatype closeSonatypeStagingRepository
./gradlew :json:publishToSonatype closeSonatypeStagingRepository
./gradlew :yaml:publishToSonatype closeSonatypeStagingRepository
env:
ORG_GRADLE_PROJECT_signingKeyId: ${{ secrets.PUBLISH_SIGNING_KEYID }}
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.PUBLISH_SIGNING_KEY }}
Expand All @@ -42,14 +33,10 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-java@v3
- name: Common Setup
uses: a-sit-plus/internal-workflows/.github/actions/common-setup@v2
with:
distribution: 'temurin'
java-version: '17'
override-cache: 'false'
- name: Build Dokka HTML
run: ./gradlew dokkaGenerate
- name: Setup Pages
Expand All @@ -61,4 +48,4 @@ jobs:
path: './build/docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v4
11 changes: 3 additions & 8 deletions .github/workflows/spotless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
push:
branches:
- main
- development
pull_request:
workflow_dispatch:
inputs:
Expand All @@ -25,13 +24,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 300
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Common Setup
uses: a-sit-plus/internal-workflows/.github/actions/common-setup@v2
with:
submodules: recursive
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
override-cache: ${{ github.ref_name == 'main' }}
- name: check
run: ./gradlew spotlessCheck
3 changes: 1 addition & 2 deletions .github/workflows/test-everything.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
push:
branches:
- main
- development
pull_request:
workflow_dispatch:
inputs:
Expand All @@ -24,7 +23,7 @@ jobs:
test-everything:
uses: a-sit-plus/internal-workflows/.github/workflows/test-everything.yml@xcode-26
with:
override-cache: ${{ github.ref_name == 'development' || github.ref_name == 'main' }}
override-cache: ${{ github.ref_name == 'main' }}
matrix-file-name: ".github/config/test-strategy-matrix.json"
kotlin-version: ${{ inputs.kotlin-version }}
testballoon-version: ${{ inputs.testballoon-version }}
Expand Down
4 changes: 2 additions & 2 deletions build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ plugins {
`kotlin-dsl`
}

group = "at.asitplus.porpigator.buildlogic"
group = "at.asitplus.propigator.buildlogic"

gradlePlugin {
plugins {
create("propigatorConventions") {
id = "at.asitplus.propigator.buildlogic"
implementationClass = "at.asitplus.gradle.PropigatorConventionsPlugin"
displayName = "Propigator Build Logic Conventions"
description = "Common build logic for awesn1"
description = "Common build logic for Propigator"
}
}
}
Expand Down
Loading