Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #3

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: C/C++ CI

on: [push]

jobs:
test_macos:

runs-on: macOS-latest

steps:
- uses: actions/checkout@v1
- name: cmake
run: mkdir build; cd build; cmake -DTEST=true -DJAVA=false -DCMAKE_BUILD_TYPE=Debug ..
- name: make
run: cd build; make
- name: test
run: cd build; make test

test_ubuntu:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: cmake
run: mkdir build; cd build; cmake -DTEST=true -DJAVA=false -DTRANSPORTS=false -DBUILD_DOC=false -DIN3API=true -DIN3_LIB=false -DCMD=false -DCMAKE_BUILD_TYPE=Debug ..
- name: make
run: cd build; make
- name: test
run: cd build; make test

test_win:

runs-on: windows-latest

steps:
- uses: actions/checkout@v1
- name: cmake
run: mkdir build; cd build; cmake -DTEST=true -DJAVA=false -DTRANSPORTS=false -DBUILD_DOC=false -DIN3API=true -DIN3_LIB=false -DCMD=false -DCMAKE_BUILD_TYPE=Debug ..
- name: make
run: cd build; make tests
- name: test
run: cd build; make test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
decentralized and secure network of remote nodes, enabling trustworthy and fast access to blockchain for a large number
of low-performance IoT and mobile devices.

![in3](in3_image.png)
![in3](docs/in3_image.png)

A more detailed explanation of in3 can be found [here](https://in3.readthedocs.io/en/develop/intro.html).

Expand Down
Loading