-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature-manual-redaction
- Loading branch information
Showing
16 changed files
with
1,326 additions
and
519 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 |
---|---|---|
@@ -0,0 +1,91 @@ | ||
name: Test Installers Build | ||
|
||
on: | ||
workflow_dispatch: | ||
release: | ||
types: [created] | ||
permissions: | ||
contents: write | ||
packages: write | ||
jobs: | ||
build-installers: | ||
strategy: | ||
matrix: | ||
include: | ||
- os: windows-latest | ||
platform: win | ||
ext: exe | ||
#- os: macos-latest | ||
# platform: mac | ||
# ext: dmg | ||
#- os: ubuntu-latest | ||
# platform: linux | ||
# ext: deb | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: "21" | ||
distribution: "temurin" | ||
|
||
- uses: gradle/actions/setup-gradle@v4 | ||
with: | ||
gradle-version: 8.7 | ||
|
||
# Install Windows dependencies | ||
- name: Install WiX Toolset | ||
if: matrix.os == 'windows-latest' | ||
run: | | ||
curl -L -o wix.exe https://github.com/wixtoolset/wix3/releases/download/wix3141rtm/wix314.exe | ||
.\wix.exe /install /quiet | ||
# Install Linux dependencies | ||
- name: Install Linux Dependencies | ||
if: matrix.os == 'ubuntu-latest' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y fakeroot rpm | ||
# Get version number | ||
- name: Get version number | ||
id: versionNumber | ||
run: echo "versionNumber=$(./gradlew printVersion --quiet | tail -1)" >> $GITHUB_OUTPUT | ||
shell: bash | ||
|
||
- name: Get version number mac | ||
id: versionNumberMac | ||
run: echo "versionNumberMac=$(./gradlew printMacVersion --quiet | tail -1)" >> $GITHUB_OUTPUT | ||
shell: bash | ||
|
||
# Build installer | ||
- name: Build Installer | ||
run: ./gradlew build jpackage -x test --info | ||
env: | ||
DOCKER_ENABLE_SECURITY: false | ||
STIRLING_PDF_DESKTOP_UI: true | ||
|
||
# Rename and collect artifacts based on OS | ||
- name: Prepare artifacts | ||
id: prepare | ||
shell: bash | ||
run: | | ||
if [ "${{ matrix.os }}" = "windows-latest" ]; then | ||
mv "build/jpackage/Stirling-PDF-${{ steps.versionNumber.outputs.versionNumber }}.exe" "Stirling-PDF-${{ steps.versionNumber.outputs.versionNumber }}-${{ matrix.platform }}.${{ matrix.ext }}" | ||
elif [ "${{ matrix.os }}" = "macos-latest" ]; then | ||
mv "build/jpackage/Stirling-PDF-${{ steps.versionNumberMac.outputs.versionNumberMac }}.dmg" "Stirling-PDF-${{ steps.versionNumber.outputs.versionNumber }}-${{ matrix.platform }}.${{ matrix.ext }}" | ||
else | ||
mv "build/jpackage/stirling-pdf_${{ steps.versionNumber.outputs.versionNumber }}-1_amd64.deb" "Stirling-PDF-${{ steps.versionNumber.outputs.versionNumber }}-${{ matrix.platform }}.${{ matrix.ext }}" | ||
fi | ||
# Upload installer as artifact for testing | ||
- name: Upload Installer Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Stirling-PDF-${{ matrix.platform }}-installer.{{ matrix.ext }} | ||
path: Stirling-PDF-${{ steps.versionNumber.outputs.versionNumber }}-${{ matrix.platform }}.${{ matrix.ext }} | ||
retention-days: 1 | ||
if-no-files-found: error |
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
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 |
---|---|---|
|
@@ -161,3 +161,4 @@ out/ | |
.pytest_cache | ||
.ipynb_checkpoints | ||
|
||
**/jcef-bundle/ |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Main stage | ||
FROM alpine:3.21.0 | ||
FROM alpine:3.20.3 | ||
|
||
# Copy necessary files | ||
COPY scripts /scripts | ||
|
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
Oops, something went wrong.