-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from simelo/stdevAlDen_t7_refactor_in_tests
Fixes #7 Refactoring the criterion tests to libcheck
- Loading branch information
Showing
56 changed files
with
4,494 additions
and
4,635 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
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 |
---|---|---|
|
@@ -160,3 +160,6 @@ addresses.txt | |
seeds.csv | ||
|
||
histogram | ||
# Ignore compilator by qemu | ||
qemu_* | ||
core |
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 |
---|---|---|
@@ -1,45 +1,42 @@ | ||
sudo: required | ||
dist: xenial | ||
language: go | ||
go: | ||
- "1.11.x" | ||
|
||
matrix: | ||
include: | ||
- os: linux | ||
dist: xenial | ||
env: VERSION_UPGRADE_TEST_WAIT_TIMEOUT=45s | ||
- os: osx | ||
# Do not start osx build for PR | ||
osx_image: xcode8 | ||
osx_image: xcode8.3 | ||
env: VERSION_UPGRADE_TEST_WAIT_TIMEOUT=60s | ||
|
||
before_install: | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt-get update -qq; fi | ||
- VERSION=1.10.2 ./ci-scripts/install-golangci-lint.sh | ||
- ./ci-scripts/install-travis-gcc.sh | ||
- eval "CC=gcc-6 && CXX=g++-6" | ||
|
||
env: | ||
global: | ||
- BUILD_DIR: build | ||
- BUILDLIB_DIR: $BUILD_DIR/libskycoin | ||
- LIB_DIR: lib | ||
- CGO_ENABLED: 1 | ||
|
||
install: | ||
# Install gox | ||
- go get github.com/gz-c/gox | ||
- go get -t ./... | ||
- make install-linters | ||
# Install pinned golangci-lint, overriding the latest version install by make install-linters | ||
- VERSION=1.10.2 ./ci-scripts/install-golangci-lint.sh | ||
- ./ci-scripts/install-travis-gcc.sh | ||
# Install pinned golangci-lint, overriding the latest version install by make install-linters | ||
- make install-deps-libc | ||
|
||
script: | ||
- make lint | ||
# libskycoin tests | ||
- CC=gcc-6 make test-libc | ||
- make check | ||
|
||
notifications: | ||
email: | ||
- false | ||
# https://github.com/kvld/travisci-telegram TravisCI Telegram Bot integration | ||
email: false | ||
webhooks: https://fathomless-fjord-24024.herokuapp.com/notify |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
[](https://user-images.githubusercontent.com/26845312/32426705-d95cb988-c281-11e7-9463-a3fce8076a72.png) | ||
|
||
# Skycoin C library | ||
|
||
[![Build Status](https://travis-ci.org/skycoin/libskycoin.svg)](https://travis-ci.org/skycoin/libskycoin) | ||
|
||
Skycoin C library (a.k.a `libskycoin`) exports the Skycoin API to DApps using the C programming language. | ||
It is also the foundation to build client libraries for other programming languages. | ||
|
||
## Links | ||
|
||
* [skycoin.net](https://www.skycoin.net) | ||
* [Skycoin Blog](https://www.skycoin.net/blog) | ||
* [Skycoin Docs](https://www.skycoin.net/docs) | ||
* [Skycoin Blockchain Explorer](https://explorer.skycoin.net) | ||
* [Skycoin Development Telegram Channel](https://t.me/skycoindev) | ||
* [Skycoin Github Wiki](https://github.com/skycoin/skycoin/wiki) | ||
|
||
## Subprojects | ||
|
||
The Skycoin C library is made of the following components | ||
|
||
- `lib/cgo` : C wrappers for the Skycoin core API | ||
- `lib/swig` : SWIG interfaces to generate wrappers around the Skycoin core API for other programming languages | ||
|
||
Consult respective `README` files for further details. | ||
|
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.