Release :: Build (Extended Services) #42
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
# | |
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information | |
# regarding copyright ownership. The ASF licenses this file | |
# 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 CONDITIONS OF ANY | |
# KIND, either express or implied. See the License for the | |
# specific language governing permissions and limitations | |
# under the License. | |
# | |
name: "Release :: Build (Extended Services)" | |
on: | |
workflow_dispatch: | |
inputs: | |
dry_run: | |
type: boolean | |
required: true | |
description: "Dry run mode" | |
base_ref: | |
type: string | |
required: true | |
description: "Base reference for the checkout" | |
release_candidate_version: | |
type: string | |
required: true | |
description: "Release candidate version" | |
drools_repository: | |
required: true | |
description: "Drools artifacts repository" | |
kogito_runtimes_repository: | |
required: true | |
description: "Kogito runtimes artifacts repository" | |
kogito_apps_repository: | |
required: true | |
description: "Kogito apps artifacts repository" | |
jitexecutor_native_macos_repository: | |
required: true | |
description: "JITExecutor native macOS artifacts repository" | |
jitexecutor_native_windows_repository: | |
required: true | |
description: "JITExecutor native windows artifacts repository" | |
env: | |
KIE_TOOLS_BUILD__runLinters: "false" | |
KIE_TOOLS_BUILD__runTests: "false" | |
KIE_TOOLS_BUILD__runEndToEndTests: "false" | |
KIE_TOOLS_BUILD__buildContainerImages: "true" | |
jobs: | |
extended_services_build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-13, windows-latest] | |
steps: | |
- name: "Support longpaths (Windows only)" | |
if: runner.os == 'Windows' | |
run: git config --system core.longpaths true | |
- name: "Checkout @ GitHub default" | |
uses: actions/checkout@v3 | |
- name: "Checkout @ Simulated squashed-merge if PR" | |
uses: ./.github/actions/checkout-pr | |
with: | |
ref: ${{ inputs.base_ref }} | |
- name: "Setup environment" | |
id: setup_env | |
uses: ./.github/actions/setup-env | |
- name: Setup maven settings (MacOS) | |
if: runner.os == 'macOS' | |
env: | |
WORKDIR_PATH: ${{ github.workspace }} | |
DROOLS_REPO: ${{ github.event.inputs.drools_repository }} | |
KOGITO_RUNTIMES_REPO: ${{ github.event.inputs.kogito_runtimes_repository }} | |
KOGITO_APPS_REPO: ${{ github.event.inputs.kogito_apps_repository }} | |
JITEXECUTOR_NATIVE_REPO: ${{ github.event.inputs.jitexecutor_native_macos_repository }} | |
run: | | |
mkdir -p ${WORKDIR_PATH}/.m2 | |
echo "<settings> | |
<servers> | |
<server> | |
<id>apache.snapshots.https</id> | |
<username>${{ secrets.NEXUS_USER }}</username> | |
<password>${{ secrets.NEXUS_PW }}</password> | |
</server> | |
</servers> | |
<profiles> | |
<profile> | |
<id>additional_repos</id> | |
<repositories> | |
<repository> | |
<id>apache-kie-drools-staging-repository</id> | |
<name>Apache KIE Drools Staging Repository</name> | |
<url>${DROOLS_REPO}</url> | |
<layout>default</layout> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>apache-kie-kogito-runtimes-staging-repository</id> | |
<name>Apache KIE Kogito Runtimes Staging Repository</name> | |
<url>${KOGITO_RUNTIMES_REPO}</url> | |
<layout>default</layout> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>apache-kie-kogito-apps-staging-repository</id> | |
<name>Apache KIE Kogito Apps Staging Repository</name> | |
<url>${KOGITO_APPS_REPO}</url> | |
<layout>default</layout> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>apache-kie-jitexecutor-native-staging-repository</id> | |
<name>Apache KIE JITExecutor Native Staging Repository</name> | |
<url>${JITEXECUTOR_NATIVE_REPO}</url> | |
<layout>default</layout> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</repository> | |
</repositories> | |
<pluginRepositories> | |
<pluginRepository> | |
<id>apache-kie-drools-staging-repository</id> | |
<name>Apache KIE Drools Staging Repository</name> | |
<url>${DROOLS_REPO}</url> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</pluginRepository> | |
<pluginRepository> | |
<id>apache-kie-kogito-runtimes-staging-repository</id> | |
<name>Apache KIE Kogito Runtimes Staging Repository</name> | |
<url>${KOGITO_RUNTIMES_REPO}</url> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</pluginRepository> | |
<pluginRepository> | |
<id>apache-kie-kogito-apps-staging-repository</id> | |
<name>Apache KIE Kogito Apps Staging Repository</name> | |
<url>${KOGITO_APPS_REPO}</url> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</pluginRepository> | |
<pluginRepository> | |
<id>apache-kie-jitexecutor-native-staging-repository</id> | |
<name>Apache KIE JITExecutor Native Staging Repository</name> | |
<url>${JITEXECUTOR_NATIVE_REPO}</url> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</pluginRepository> | |
</pluginRepositories> | |
</profile> | |
</profiles> | |
<activeProfiles> | |
<activeProfile>additional_repos</activeProfile> | |
</activeProfiles> | |
</settings>" > ${WORKDIR_PATH}/.m2/settings.xml | |
- name: Setup maven settings (Windows) | |
if: runner.os == 'Windows' | |
env: | |
WORKDIR_PATH: ${{ github.workspace }} | |
DROOLS_REPO: ${{ github.event.inputs.drools_repository }} | |
KOGITO_RUNTIMES_REPO: ${{ github.event.inputs.kogito_runtimes_repository }} | |
KOGITO_APPS_REPO: ${{ github.event.inputs.kogito_apps_repository }} | |
JITEXECUTOR_NATIVE_REPO: ${{ github.event.inputs.jitexecutor_native_windows_repository }} | |
shell: pwsh | |
run: | | |
New-Item -Name ".m2" -Path "$env:WORKDIR_PATH" -ItemType Directory | |
$contentToAdd = @" | |
<settings> | |
<servers> | |
<server> | |
<id>apache.snapshots.https</id> | |
<username>${{ secrets.NEXUS_USER }}</username> | |
<password>${{ secrets.NEXUS_PW }}</password> | |
</server> | |
</servers> | |
<profiles> | |
<profile> | |
<id>additional_repos</id> | |
<repositories> | |
<repository> | |
<id>apache-kie-drools-staging-repository</id> | |
<name>Apache KIE Drools Staging Repository</name> | |
<url>$env:DROOLS_REPO</url> | |
<layout>default</layout> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>apache-kie-kogito-runtimes-staging-repository</id> | |
<name>Apache KIE Kogito Runtimes Staging Repository</name> | |
<url>$env:KOGITO_RUNTIMES_REPO</url> | |
<layout>default</layout> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>apache-kie-kogito-apps-staging-repository</id> | |
<name>Apache KIE Kogito Apps Staging Repository</name> | |
<url>$env:KOGITO_APPS_REPO</url> | |
<layout>default</layout> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</repository> | |
<repository> | |
<id>apache-kie-jitexecutor-native-staging-repository</id> | |
<name>Apache KIE JITExecutor Native Staging Repository</name> | |
<url>$env:JITEXECUTOR_NATIVE_REPO</url> | |
<layout>default</layout> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</repository> | |
</repositories> | |
<pluginRepositories> | |
<pluginRepository> | |
<id>apache-kie-drools-staging-repository</id> | |
<name>Apache KIE Drools Staging Repository</name> | |
<url>$env:DROOLS_REPO</url> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</pluginRepository> | |
<pluginRepository> | |
<id>apache-kie-kogito-runtimes-staging-repository</id> | |
<name>Apache KIE Kogito Runtimes Staging Repository</name> | |
<url>$env:KOGITO_RUNTIMES_REPO</url> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</pluginRepository> | |
<pluginRepository> | |
<id>apache-kie-kogito-apps-staging-repository</id> | |
<name>Apache KIE Kogito Apps Staging Repository</name> | |
<url>$env:KOGITO_APPS_REPO</url> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</pluginRepository> | |
<pluginRepository> | |
<id>apache-kie-jitexecutor-native-staging-repository</id> | |
<name>Apache KIE JITExecutor Native Staging Repository</name> | |
<url>$env:JITEXECUTOR_NATIVE_REPO</url> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> | |
</releases> | |
<snapshots> | |
<enabled>false</enabled> | |
<updatePolicy>never</updatePolicy> | |
</snapshots> | |
</pluginRepository> | |
</pluginRepositories> | |
</profile> | |
</profiles> | |
<activeProfiles> | |
<activeProfile>additional_repos</activeProfile> | |
</activeProfiles> | |
</settings> | |
"@ | |
Add-Content "$env:WORKDIR_PATH\.m2\settings.xml" $contentToAdd | |
- name: "Setup Maven settings file (MacOS)" | |
if: runner.os == 'macOS' | |
shell: bash | |
run: | | |
pnpm -r exec 'bash' '-c' 'echo --settings=${{ github.workspace }}/.m2/settings.xml >> .mvn/maven.config' | |
- name: "Setup Maven settings file (Windows)" | |
if: runner.os == 'Windows' | |
shell: pwsh | |
run: | | |
pnpm -r powershell "Add-Content .\.mvn\maven.config '--settings=${{ github.workspace }}\.m2\settings.xml'" | |
- name: "Bootstrap" | |
id: bootstrap | |
uses: ./.github/actions/bootstrap | |
with: | |
pnpm_filter_string: -F @kie-tools/extended-services... | |
- name: "Build" | |
shell: bash | |
run: | | |
pnpm ${{ steps.bootstrap.outputs.pnpm_filter_string }} build:prod | |
- name: Temporary MacOS artifacts | |
if: runner.os == 'macOS' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: extended-services-macos-artifacts | |
path: ./packages/extended-services/dist/darwin/Kogito.dmg | |
retention-days: 1 | |
- name: Temporary Windows artifacts | |
if: runner.os == 'Windows' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: extended-services-windows-artifacts | |
path: .\packages\extended-services\dist\win32\kie_sandbox_extended_services.exe | |
retention-days: 1 | |
extended_services_sign_and_deploy: | |
needs: [extended_services_build] | |
runs-on: ubuntu-latest | |
env: | |
RELEASE_CANDIDATE_ARTIFACTS_DIR: ${{ github.workspace }}/extended-services-release-candidate-artifacts | |
steps: | |
- name: "Checkout @ GitHub default" | |
uses: actions/checkout@v3 | |
- name: "Checkout @ Simulated squashed-merge if PR" | |
uses: ./.github/actions/checkout-pr | |
with: | |
ref: ${{ inputs.base_ref }} | |
- name: Import GPG key | |
if: github.event_name != 'pull_request' | |
uses: crazy-max/ghaction-import-gpg@111c56156bcc6918c056dbef52164cfa583dc549 | |
with: | |
gpg_private_key: ${{ secrets.GPG_KEY }} | |
- name: Create release artifacts directory | |
shell: bash | |
run: | | |
mkdir $RELEASE_CANDIDATE_ARTIFACTS_DIR | |
- name: Retrieve MacOS artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: extended-services-macos-artifacts | |
path: $RELEASE_CANDIDATE_ARTIFACTS_DIR | |
- name: Retrieve Windows artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: extended-services-windows-artifacts | |
path: $RELEASE_CANDIDATE_ARTIFACTS_DIR | |
- name: "Zip artifacts" | |
id: zip_artifacts | |
if: ${{ !inputs.dry_run }} | |
shell: bash | |
env: | |
RELEASE_CANDIDATE_VERSION: ${{ inputs.release_candidate_version }} | |
run: | | |
MACOS_ARTIFACT_ZIP_FILE="apache-kie-$RELEASE_CANDIDATE_VERSION-incubating-sandbox-extended-services-macOS-x86.zip" | |
WINDOWS_ARTIFACT_ZIP_FILE="apache-kie-$RELEASE_CANDIDATE_VERSION-incubating-sandbox-extended-services-windows-x86.zip" | |
echo "MACOS_ARTIFACT_ZIP_FILE=$MACOS_ARTIFACT_ZIP_FILE" >> "$GITHUB_OUTPUT" | |
echo "WINDOWS_ARTIFACT_ZIP_FILE=$WINDOWS_ARTIFACT_ZIP_FILE" >> "$GITHUB_OUTPUT" | |
cp ./{NOTICE,DISCLAIMER-WIP,LICENSE} $RELEASE_CANDIDATE_ARTIFACTS_DIR | |
cd $RELEASE_CANDIDATE_ARTIFACTS_DIR | |
zip $RELEASE_CANDIDATE_ARTIFACTS_DIR/$MACOS_ARTIFACT_ZIP_FILE ./Kogito.dmg ./NOTICE ./DISCLAIMER-WIP ./LICENSE | |
zip $RELEASE_CANDIDATE_ARTIFACTS_DIR/$WINDOWS_ARTIFACT_ZIP_FILE ./kie_sandbox_extended_services.exe ./NOTICE ./DISCLAIMER-WIP ./LICENSE | |
rm -f ./Kogito.dmg | |
rm -f ./kie_sandbox_extended_services.exe | |
rm -f ./{NOTICE,DISCLAIMER-WIP,LICENSE} | |
- name: "Sign artifacts" | |
if: ${{ !inputs.dry_run }} | |
shell: bash | |
env: | |
MACOS_ARTIFACT_ZIP_FILE: ${{ steps.zip_artifacts.outputs.MACOS_ARTIFACT_ZIP_FILE }} | |
WINDOWS_ARTIFACT_ZIP_FILE: ${{ steps.zip_artifacts.outputs.WINDOWS_ARTIFACT_ZIP_FILE }} | |
run: | | |
cd $RELEASE_CANDIDATE_ARTIFACTS_DIR | |
gpg --no-tty --batch --sign --pinentry-mode loopback --output $MACOS_ARTIFACT_ZIP_FILE.asc --detach-sig $MACOS_ARTIFACT_ZIP_FILE | |
shasum -a 512 $MACOS_ARTIFACT_ZIP_FILE > $MACOS_ARTIFACT_ZIP_FILE.sha512 | |
gpg --no-tty --batch --sign --pinentry-mode loopback --output $WINDOWS_ARTIFACT_ZIP_FILE.asc --detach-sig $WINDOWS_ARTIFACT_ZIP_FILE | |
shasum -a 512 $WINDOWS_ARTIFACT_ZIP_FILE > $WINDOWS_ARTIFACT_ZIP_FILE.sha512 | |
- name: "Upload artifacts to SVN" | |
if: ${{ !inputs.dry_run }} | |
shell: bash | |
env: | |
SVN_USERNAME: ${{ secrets.INCUBATOR_SVN_DEV_USERNAME }} | |
SVN_PASSWORD: ${{ secrets.INCUBATOR_SVN_DEV_PASSWORD }} | |
RELEASE_CANDIDATE_VERSION: ${{ inputs.release_candidate_version }} | |
run: | | |
svn co --depth=empty https://dist.apache.org/repos/dist/dev/incubator/kie/$RELEASE_CANDIDATE_VERSION/ svn-kie | |
cp $RELEASE_CANDIDATE_ARTIFACTS_DIR/* svn-kie | |
cd svn-kie | |
svn add . --force | |
svn ci --non-interactive --no-auth-cache --username $SVN_USERNAME --password "$SVN_PASSWORD" -m "Apache KIE $RELEASE_CANDIDATE_VERSION Extended Services artifacts" | |
rm -rf svn-kie |