Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
NickeZ committed Feb 12, 2020
0 parents commit e6d49e5
Show file tree
Hide file tree
Showing 57 changed files with 6,749 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .cargo/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[target.x86_64-apple-darwin]
linker = "x86_64-apple-darwin14-clang"
ar = "x86_64-apple-darwin14-ar"

[target.x86_64-pc-windows-gnu]
linker = "x86_64-w64-mingw32-gcc"
12 changes: 12 additions & 0 deletions .ci/ci
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/sh
set -e

cargo build
cargo build --examples
cargo test

echo "Entering bitbox02-api-wasm for wasm-pack"
(cd bitbox02-api-wasm/ || exit; wasm-pack build; wasm-pack test --node)

echo "Entering bitbox02-api-c/examples/unlock for make"
(cd bitbox02-api-c/examples/unlock || exit; make)
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit e6d49e5

Please sign in to comment.