-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.appveyor.yml
More file actions
33 lines (25 loc) · 813 Bytes
/
Copy path.appveyor.yml
File metadata and controls
33 lines (25 loc) · 813 Bytes
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
31
32
33
# Written and placed in public domain by Jeffrey Walton
# TODO: figure out how to specify each job individually, and not via a matrix
# https://www.appveyor.com/docs/getting-started-with-appveyor-for-linux/ and
# https://www.appveyor.com/docs/build-configuration/#specializing-matrix-job-configuration
# branches:
# only:
# - master
image: Ubuntu
install:
- sh: sudo apt-get update && sudo apt-get install --yes --no-install-recommends gcc g++ make autoconf automake libtool git || true
before_build:
- sh: |-
git clone https://github.com/weidai11/cryptopp.git
cp -p bootstrap.sh configure.ac libcryptopp.pc.in Makefile.am cryptopp/
cd cryptopp
build_script:
- sh: |-
./bootstrap.sh
./configure
make -j 4
test_script:
- sh: |-
./cryptest v
./cryptest tv all
# build: off