Skip to content
Merged
Show file tree
Hide file tree
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
32 changes: 32 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,35 @@
*.css text eol=lf
*.js text eol=lf
*.sql text eol=lf
*.kts text eol=lf
*.gradle.kts text eol=lf

###############################
# Git Large File System (LFS) #
###############################

# Archives
*.7z filter=lfs diff=lfs merge=lfs -text
*.br filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text

# Documents
*.pdf filter=lfs diff=lfs merge=lfs -text
*.docx diff=astextplain merge=lfs -text

# Images
*.gif filter=lfs diff=lfs merge=lfs -text
*.ico filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.psd filter=lfs diff=lfs merge=lfs -text
*.webp filter=lfs diff=lfs merge=lfs -text

# Fonts
*.woff2 filter=lfs diff=lfs merge=lfs -text

# Other
*.exe filter=lfs diff=lfs merge=lfs -text
53 changes: 53 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Build and Test

on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
build-and-test-example-card-calypso:
uses: eclipse-keyple/keyple-actions/.github/workflows/reusable-build-and-test.yml@build-and-test-v1
with:
working-directory: Example_Card_Calypso

build-and-test-example-distributed-poolreaderserverside-webservice:
uses: eclipse-keyple/keyple-actions/.github/workflows/reusable-build-and-test.yml@build-and-test-v1
with:
working-directory: Example_Distributed_PoolReaderServerSide_Webservice

build-and-test-example-distributed-readerclientside-webservice:
uses: eclipse-keyple/keyple-actions/.github/workflows/reusable-build-and-test.yml@build-and-test-v1
with:
working-directory: Example_Distributed_ReaderClientSide_Webservice

build-and-test-example-distributed-readerclientside-websocket:
uses: eclipse-keyple/keyple-actions/.github/workflows/reusable-build-and-test.yml@build-and-test-v1
with:
working-directory: Example_Distributed_ReaderClientSide_Websocket

build-and-test-example-plugin-android-nfc:
uses: eclipse-keyple/keyple-actions/.github/workflows/reusable-build-and-test.yml@build-and-test-v1
with:
working-directory: Example_Plugin_Android_NFC

build-and-test-example-plugin-android-omapi:
uses: eclipse-keyple/keyple-actions/.github/workflows/reusable-build-and-test.yml@build-and-test-v1
with:
working-directory: Example_Plugin_Android_OMAPI

build-and-test-example-plugin-pcsc:
uses: eclipse-keyple/keyple-actions/.github/workflows/reusable-build-and-test.yml@build-and-test-v1
with:
working-directory: Example_Plugin_PCSC

build-and-test-example-service:
uses: eclipse-keyple/keyple-actions/.github/workflows/reusable-build-and-test.yml@build-and-test-v1
with:
working-directory: Example_Service

build-and-test-example-service-resource:
uses: eclipse-keyple/keyple-actions/.github/workflows/reusable-build-and-test.yml@build-and-test-v1
with:
working-directory: Example_Service_Resource
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ local.properties
# Gradle
.gradle/
build*/
LICENSE_HEADER

# Eclipse
.classpath
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
### Fixed
- Fixed bad preparation of the selection in PC/SC examples.
### Changed
- Migrated the CI pipeline from Jenkins to GitHub Actions.
### Upgraded
- `keyple-plugin-pcsc-java-lib:2.5.2`

## [2025-04-18]
### Changed
Expand Down
12 changes: 12 additions & 0 deletions Example_Card_Calypso/LICENSE_HEADER
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/* **************************************************************************************
* Copyright (c) $YEAR Calypso Networks Association https://calypsonet.org/
*
* See the NOTICE file(s) distributed with this work for additional information
* regarding copyright ownership.
*
* This program and the accompanying materials are made available under the terms of the
* Eclipse Distribution License 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php
*
* SPDX-License-Identifier: BSD-3-Clause
************************************************************************************** */
Loading