forked from tpm2-software/tpm2-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .travis.yml to support travis ci auto build & test. Remove the user input demands in the test/test_all.sh to avoid blocking the test in failure case. Add build status indicator in README.md. Track this change in ChangeLog.
- Loading branch information
Gang Wei
committed
Oct 17, 2016
1 parent
ae322d5
commit 1cfb9e2
Showing
4 changed files
with
48 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
language: cpp | ||
compiler: | ||
- gcc | ||
|
||
# This is a lie: we don't need sudo but this is required to get an | ||
# Ubuntu image with a libc that isn't ancient, and with cmocka libs. | ||
sudo: required | ||
dist: trusty | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- autoconf-archive | ||
- libcmocka0 | ||
- libcmocka-dev | ||
- openssl | ||
- libssl-dev | ||
- libcurl4-openssl-dev | ||
|
||
install: | ||
- wget http://downloads.sourceforge.net/project/ibmswtpm2/ibmtpm532.tar | ||
- mkdir ibmtpm532 && pushd ibmtpm532 && tar xzf ../ibmtpm532.tar && pushd ./src && make | ||
- ./tpm_server & | ||
- popd && popd | ||
- git clone https://github.com/01org/TPM2.0-TSS.git | ||
- pushd TPM2.0-TSS && ./bootstrap && CONFIG_SITE=./lib/default_config.site ./configure && make -j$(nproc) && sudo make install && popd | ||
- sudo ldconfig /usr/local/lib | ||
- resourcemgr -sim -tpmhost 127.0.0.1 & | ||
|
||
before_script: | ||
- ./bootstrap | ||
|
||
script: | ||
- mkdir ./build | ||
- pushd ./build | ||
- ../configure --enable-unit | ||
- make -j$(nproc) | ||
- make -j$(nproc) check | ||
- sudo make install | ||
- popd | ||
- pushd ./test | ||
- ./test_all.sh | ||
- popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters