build!: drop the Eclipse plugin and switch to Gradle #1123
Workflow file for this run
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
name: CI/CD Process | ||
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
jobs: | ||
# Runs all tests | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ windows, macos, ubuntu ] | ||
runs-on: ${{ matrix.os }}-latest | ||
timeout-minutes: 120 | ||
steps: | ||
- name: Checkout | ||
uses: DanySK/[email protected] | ||
- uses: DanySK/[email protected] | ||
with: | ||
retries-on-failure: 3 | ||
build-command: >- | ||
# ./gradlew build --parallel | ||
true | ||
check-command: true | ||
deploy-command: >- | ||
./gradlew uploadAllPublicationsToMavenCentralNexus close drop --parallel | ||
should-run-codecov: ${{ runner.os == 'Linux' }} | ||
should-deploy: >- | ||
${{ | ||
runner.os == 'Linux' | ||
&& !github.event.repository.fork | ||
&& github.event_name != 'pull_request' | ||
}} | ||
maven-central-username: ${{ secrets.MAVEN_CENTRAL_USERNAME }} | ||
maven-central-password: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} | ||
signing-key: ${{ secrets.SIGNING_KEY }} | ||
signing-password: ${{ secrets.SIGNING_PASSWORD }} | ||
# Performs a release if needed | ||
release: | ||
permissions: | ||
contents: write | ||
needs: | ||
- build | ||
runs-on: ubuntu-latest | ||
if: >- | ||
!github.event.repository.fork | ||
&& github.event_name != 'pull_request' | ||
concurrency: | ||
group: release-${{ github.event.number || github.ref }} | ||
cancel-in-progress: false | ||
timeout-minutes: 120 | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
submodules: recursive | ||
token: ${{ secrets.DEPLOYMENT_TOKEN }} | ||
- name: Install Node | ||
uses: actions/[email protected] | ||
with: | ||
node-version-file: package.json | ||
- uses: DanySK/[email protected] | ||
with: | ||
retries-on-failure: 1 | ||
build-command: true | ||
check-command: true | ||
deploy-command: | | ||
npm install | ||
npx semantic-release | ||
should-run-codecov: false | ||
should-deploy: true | ||
github-token: ${{ secrets.DEPLOYMENT_TOKEN }} | ||
maven-central-username: ${{ secrets.MAVEN_CENTRAL_USERNAME }} | ||
maven-central-password: ${{ secrets.MAVEN_CENTRAL_PASSWORD }} | ||
signing-key: ${{ secrets.SIGNING_KEY }} | ||
signing-password: ${{ secrets.SIGNING_PASSWORD }} | ||
success: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- build | ||
- release | ||
if: >- | ||
always() && ( | ||
contains(join(needs.*.result, ','), 'failure') | ||
|| !contains(join(needs.*.result, ','), 'cancelled') | ||
) | ||
steps: | ||
- name: Verify that there were no failures | ||
run: ${{ !contains(join(needs.*.result, ','), 'failure') }} |