Skip to content

chore: bump to 1.5.1 #766

chore: bump to 1.5.1

chore: bump to 1.5.1 #766

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
gradle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Execute Gradle build
run: |
gradle -b cie-java/build.gradle standalone
- name: Install Dependencies
run: >
sudo apt update;
sudo apt install -y g++ libcrypto++-dev
libcrypto++8 libcurl4-openssl-dev libfontconfig1-dev
libfreetype6-dev libpcsclite-dev libpcsclite1 libpng-dev
libpodofo-dev libssl-dev libssl1.1 libxml2 libxml2-dev
pcscd pkg-config python3-pip unzip
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- run: pip install meson ninja
env:
CC: gcc
- run: meson builddir libs
- run: meson configure -Dprefix=/usr builddir
- run: meson compile -C builddir
- uses: actions/upload-artifact@v3
if: failure()
with:
name: Linux_Meson_Testlog
path: builddir/meson-logs/testlog.txt