Skip to content
Draft
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
12 changes: 10 additions & 2 deletions .github/workflows/verify-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ jobs:
env:
VENDOR_PASSWORD: ${{ secrets.VENDOR_PASSWORD }}

- name: Install libcrypto
run: |
sudo apt-get update && sudo apt-get install -y libssl3
find /usr -name "libcrypto.so.3*" 2>/dev/null || echo "libcrypto.so.3 not found"

- name: Prepare template vendor files
run: |
rm -rf template/vendor
Expand All @@ -58,14 +63,17 @@ jobs:
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }}
LD_LIBRARY_PATH: /usr/lib/x86_64-linux-gnu:/lib/x86_64-linux-gnu

- name: Build template cinpoJar
working-directory: template
run: ../gradlew --no-daemon --refresh-dependencies cinpoJar
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GH_PACKAGES_TOKEN }}
LD_LIBRARY_PATH: /usr/lib/x86_64-linux-gnu:/lib/x86_64-linux-gnu

- name: Verify template cinpoJar appliance
working-directory: template
run: java -jar build/libs/cinpo-appliance.jar write --test
run: java -jar template/build/libs/cinpo-appliance.jar write --test
env:
LD_LIBRARY_PATH: /usr/lib/x86_64-linux-gnu:/lib/x86_64-linux-gnu
Loading