-
Notifications
You must be signed in to change notification settings - Fork 23
166 lines (161 loc) · 6.46 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
name: Rust
on: [push, pull_request]
jobs:
build-dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: textbook/[email protected]
- uses: docker://gcc
- name: Build tensorflow
run: |
sudo apt-get update -qq >/dev/null 2>&1 && sudo apt-get install -yqq xxd git
echo "Using tensorflow hash: $(git submodule status | awk '{print $1}')"
echo "::set-env name=TF_HASH::$(git submodule status | awk '{print $1}')"
cd submodules/tensorflow
export BUILD_TYPE=debug
sudo -E make -f tensorflow/lite/micro/tools/make/Makefile test_magic_wand_test
sudo chmod a+rwx -R .
- name: Cache cargo registry
uses: actions/cache@v1
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-registry-ctoml-${{ hashFiles('**/Cargo.toml') }}
- name: Cache cargo index
uses: actions/cache@v1
with:
path: ~/.cargo/git
key: ${{ runner.os }}-index-ctoml-${{ hashFiles('**/Cargo.toml') }}
- name: Cache cargo build
uses: actions/cache@v1
with:
path: target
key: ${{ runner.os }}-dev-target-tf-${{ env.TF_HASH }}-bd-${{ hashFiles('**/build.rs') }}-hpp-${{ hashFiles('**/tflite_wrapper.hpp') }}
- uses: actions-rs/toolchain@master
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Build
run: |
cargo build --verbose --features=no-c-warnings
cargo test --verbose --features=no-c-warnings
build-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: textbook/[email protected]
- uses: docker://gcc
- name: Build tensorflow
run: |
sudo apt-get update -qq >/dev/null 2>&1 && sudo apt-get install -yqq xxd git
echo "Using tensorflow hash: $(git submodule status | awk '{print $1}')"
echo "::set-env name=TF_HASH::$(git submodule status | awk '{print $1}')"
cd submodules/tensorflow
export BUILD_TYPE=debug
sudo -E make -f tensorflow/lite/micro/tools/make/Makefile test_magic_wand_test
sudo chmod a+rwx -R .
- name: Cache cargo registry
uses: actions/cache@v1
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-registry-ctoml-${{ hashFiles('**/Cargo.toml') }}
- name: Cache cargo index
uses: actions/cache@v1
with:
path: ~/.cargo/git
key: ${{ runner.os }}-index-ctoml-${{ hashFiles('**/Cargo.toml') }}
- name: Cache cargo build
uses: actions/cache@v1
with:
path: target
key: ${{ runner.os }}-release-target-tf-${{ env.TF_HASH }}-bd-${{ hashFiles('**/build.rs') }}-hpp-${{ hashFiles('**/tflite_wrapper.hpp') }}
- uses: actions-rs/toolchain@master
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Build
run: |
cargo build --release --verbose --features=no-c-warnings
cargo test --release --verbose --features=no-c-warnings
build-stm32f0-example:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: textbook/[email protected]
- uses: docker://gcc
- name: Build tensorflow
run: |
sudo apt-get update -qq >/dev/null 2>&1 && sudo apt-get install -yqq xxd git
echo "Using tensorflow hash: $(git submodule status | awk '{print $1}')"
echo "::set-env name=TF_HASH::$(git submodule status | awk '{print $1}')"
cd submodules/tensorflow
export BUILD_TYPE=debug
sudo -E make -f tensorflow/lite/micro/tools/make/Makefile test_magic_wand_test
sudo chmod a+rwx -R .
- name: Cache cargo registry
uses: actions/cache@v1
with:
path: examples/stm32f0/.cargo/registry
key: ${{ runner.os }}-stm32f0-registry-ctoml-${{ hashFiles('**/Cargo.toml') }}
- name: Cache cargo index
uses: actions/cache@v1
with:
path: examples/stm32f0/.cargo/git
key: ${{ runner.os }}-stm32f0-index-ctoml--${{ hashFiles('**/Cargo.toml') }}
- name: Cache cargo build
uses: actions/cache@v1
with:
path: examples/stm32f0/target
key: ${{ runner.os }}-stm32f0-target-tf-${{ env.TF_HASH }}-bd-${{ hashFiles('**/build.rs') }}-hpp-${{ hashFiles('**/tflite_wrapper.hpp') }}
- uses: actions-rs/toolchain@master
with:
toolchain: nightly
target: thumbv6m-none-eabi
override: true
- name: Build stm32f0
working-directory: examples/stm32f0
run: |
sudo apt-get install gcc-arm-none-eabi
arm-none-eabi-g++ -v
cargo build --verbose --target thumbv6m-none-eabi --features tfmicro/no-c-warnings -Z features=build_dep
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: textbook/[email protected]
- uses: docker://gcc
- name: Build tensorflow
run: |
sudo apt-get update -qq >/dev/null 2>&1 && sudo apt-get install -yqq xxd git
echo "Using tensorflow hash: $(git submodule status | awk '{print $1}')"
echo "::set-env name=TF_HASH::$(git submodule status | awk '{print $1}')"
cd submodules/tensorflow
export BUILD_TYPE=debug
sudo -E make -f tensorflow/lite/micro/tools/make/Makefile test_magic_wand_test
sudo chmod a+rwx -R .
- name: Cache cargo registry
uses: actions/cache@v1
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-registry-ctoml-${{ hashFiles('**/Cargo.toml') }}
- name: Cache cargo index
uses: actions/cache@v1
with:
path: ~/.cargo/git
key: ${{ runner.os }}-index-ctoml-${{ hashFiles('**/Cargo.toml') }}
- name: Cache cargo build
uses: actions/cache@v1
with:
path: target
key: ${{ runner.os }}-clippy-target-tf-${{ env.TF_HASH }}-bd-${{ hashFiles('**/build.rs') }}-hpp-${{ hashFiles('**/tflite_wrapper.hpp') }}
- uses: actions-rs/toolchain@master
with:
toolchain: nightly
override: true
components: clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets