Skip to content

Commit e6d49e5

Browse files
committed
init
0 parents  commit e6d49e5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+6749
-0
lines changed

.cargo/config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[target.x86_64-apple-darwin]
2+
linker = "x86_64-apple-darwin14-clang"
3+
ar = "x86_64-apple-darwin14-ar"
4+
5+
[target.x86_64-pc-windows-gnu]
6+
linker = "x86_64-w64-mingw32-gcc"

.ci/ci

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
set -e
3+
4+
cargo build
5+
cargo build --examples
6+
cargo test
7+
8+
echo "Entering bitbox02-api-wasm for wasm-pack"
9+
(cd bitbox02-api-wasm/ || exit; wasm-pack build; wasm-pack test --node)
10+
11+
echo "Entering bitbox02-api-c/examples/unlock for make"
12+
(cd bitbox02-api-c/examples/unlock || exit; make)

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

0 commit comments

Comments
 (0)