-
Notifications
You must be signed in to change notification settings - Fork 38
/
appveyor.yml
30 lines (23 loc) · 911 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# GidsApplet: A Java Card implementation of the GIDS (Generic Identity
# Device Specification) specification
# https://msdn.microsoft.com/en-us/library/windows/hardware/dn642100%28v=vs.85%29.aspx
# Copyright (C) 2016 Vincent Le Toux([email protected])
#
# SPDX-License-Identifier: GPL-3.0-or-later
version: 1.0.{build}
install:
- cmd: >-
appveyor DownloadFile https://dlcdn.apache.org//ant/binaries/apache-ant-1.10.14-bin.zip
appveyor DownloadFile https://github.com/martinpaljak/GlobalPlatformPro/releases/latest/download/gp.jar
7z x apache-ant-1.10.14-bin.zip
set PATH=%cd%\apache-ant-1.10.14\bin;%PATH%
java -version
javac -version
build_script:
- cmd: git submodule update --init --recursive
- cmd: ant dist
test_script:
- cmd: ant test
- cmd: java -jar gp.jar --info --cap dist\GidsApplet-1.0.3*.cap
artifacts:
- path: dist\*.cap