-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
60 changed files
with
3,655 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
rust_crates/registry/src/gh.neting.cc-1ecc6299db9ec823/dlopen-0.1.7/.cargo-ok
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 @@ | ||
ok |
10 changes: 10 additions & 0 deletions
10
rust_crates/registry/src/gh.neting.cc-1ecc6299db9ec823/dlopen-0.1.7/.gitignore
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,10 @@ | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
/target/ | ||
|
||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries | ||
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock | ||
Cargo.lock | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk |
4 changes: 4 additions & 0 deletions
4
rust_crates/registry/src/gh.neting.cc-1ecc6299db9ec823/dlopen-0.1.7/.idea/encodings.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
rust_crates/registry/src/gh.neting.cc-1ecc6299db9ec823/dlopen-0.1.7/.idea/misc.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
rust_crates/registry/src/gh.neting.cc-1ecc6299db9ec823/dlopen-0.1.7/.idea/modules.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
rust_crates/registry/src/gh.neting.cc-1ecc6299db9ec823/dlopen-0.1.7/.idea/vcs.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
227 changes: 227 additions & 0 deletions
227
rust_crates/registry/src/gh.neting.cc-1ecc6299db9ec823/dlopen-0.1.7/.idea/workspace.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
44 changes: 44 additions & 0 deletions
44
rust_crates/registry/src/gh.neting.cc-1ecc6299db9ec823/dlopen-0.1.7/.travis.yml
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,44 @@ | ||
language: rust | ||
sudo: required | ||
cache: cargo | ||
rust: | ||
- 1.24.0 | ||
- stable | ||
- nightly | ||
- beta | ||
os: | ||
- linux | ||
- osx | ||
env: | ||
- ARCH=x86_64 | ||
- ARCH=i686 | ||
|
||
matrix: | ||
allow_failures: | ||
- rust: nightly | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- libcurl4-openssl-dev | ||
- libelf-dev | ||
- libdw-dev | ||
- cmake | ||
- gcc | ||
- binutils-dev | ||
- libiberty-dev | ||
|
||
after_success: | | ||
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz && | ||
tar xzf master.tar.gz && | ||
cd kcov-master && | ||
mkdir build && | ||
cd build && | ||
cmake .. && | ||
make && | ||
make install DESTDIR=../../kcov-build && | ||
cd ../.. && | ||
rm -rf kcov-master && | ||
for file in target/debug/dlopen-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done && | ||
bash <(curl -s https://codecov.io/bash) && | ||
echo "Uploaded code coverage" |
Oops, something went wrong.