Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Fix PCSC-Lite name to PCSCLite #112

Fix PCSC-Lite name to PCSCLite

Fix PCSC-Lite name to PCSCLite #112

Workflow file for this run

name: Build
on:
pull_request:
branches:
- master
- develop
push:
branches:
- master
- develop
jobs:
build-gcc:
runs-on: ubuntu-latest
steps:
- name: "Setup"
run: |
sudo apt-get update
sudo apt-get install -y libpcsclite-dev
pip3 install conan
conan profile detect
- name: "Checkout LLA"
uses: actions/checkout@v2
with:
path: lla
- name: "Checkout cppkcs11"
uses: actions/checkout@v2
with:
repository: liblogicalaccess/cppkcs11
path: cppkcs
- name: "Setup cppkcs11"
run: |
conan export .
working-directory: cppkcs
- name: "Build"
run: |
mkdir build
cd build
conan install .. --build=missing
conan build ..
working-directory: lla
- name: "Test"
run: |
cd build
ctest -V
working-directory: lla
build-clang:
runs-on: ubuntu-latest
steps:
- name: "Setup"
run: |
sudo apt-get update
sudo apt-get install -y libpcsclite-dev
pip3 install conan
conan profile detect
- name: "Checkout LLA"
uses: actions/checkout@v2
with:
path: lla
- name: "Checkout cppkcs11"
uses: actions/checkout@v2
with:
repository: liblogicalaccess/cppkcs11
path: cppkcs
- name: "Setup cppkcs11"
run: |
conan export .
working-directory: cppkcs
- name: "Build with clang"
env:
CC: /usr/bin/clang
CXX: /usr/bin/clang++
run: |
mkdir build
cd build
conan install .. --build=missing
conan build ..
working-directory: lla
- name: "Test"
run: |
cd build
ctest -V
working-directory: lla
build-windows:
runs-on: windows-2019
steps:
- name: "Setup"
run: |
pip3 install conan
conan profile detect
- name: "Checkout LLA"
uses: actions/checkout@v2
with:
path: lla
- name: "Checkout cppkcs11"
uses: actions/checkout@v2
with:
repository: liblogicalaccess/cppkcs11
path: cppkcs
- name: "Setup cppkcs11"
run: |
conan export .
working-directory: cppkcs
- name: "Build"
run: |
mkdir build
cd build
conan install .. --build=missing
conan build ..
working-directory: lla
- name: "Test"
run: |
cd build
ctest -V -C Release
working-directory: lla
Morty Proxy This is a proxified and sanitized view of the page, visit original site.