-
Notifications
You must be signed in to change notification settings - Fork 21
224 lines (185 loc) · 6.16 KB
/
ci.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
#
# Copyright (c) 2022 ZettaScale Technology
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# ZettaScale Zenoh Team, <zenoh@zettascale.tech>
#
name: CI
on:
workflow_dispatch:
push:
branches: ["**"]
pull_request:
branches: ["**"]
schedule:
- cron: "0 0 * * 1-5"
jobs:
checks:
name: Run checks on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
components: rustfmt, clippy
- name: Code format check
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings
- name: Clippy unstable
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings
tests:
name: Run tests on ${{ matrix.os }}
needs: [checks]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Install latest Rust toolchain
uses: actions-rs/toolchain@v1
- name: Build zenoh-flow-plugin
uses: actions-rs/cargo@v1
with:
command: build
args: --release -p zenoh-flow-plugin -j1
- name: Build zfctl
uses: actions-rs/cargo@v1
with:
command: build
args: --release -p zfctl -j1
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --release --verbose
env:
ASYNC_STD_THREAD_COUNT: 4
- name: Run doctests
uses: actions-rs/cargo@v1
with:
command: test
args: --doc
env:
ASYNC_STD_THREAD_COUNT: 4
- name: Install Python package
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: dump
run: |
echo 'github.workspace === ${{ github.workspace }}'
echo "GITHUB_WORKSPACE === $GITHUB_WORKSPACE"
echo 'runner.workspace === ${{ runner.workspace }}'
echo "RUNNER_WORKSPACE === $RUNNER_WORKSPACE"
# - name: Find files matching "zfctl.json"
# uses: jeertmans/filesfinder@latest
# id: ff # Any id, to be used later to reference to files output
# with:
# # Only argument, a single string, to be passed as arguments to ff.
# # See `ff --help` for more help.
# # Default: "*"
# args: "zfctl.json"
# - name: Print files matching "zfctl.json"
# run: echo "${{ steps.ff.outputs.files }}"
# - name: Find files matching "zenohd"
# uses: jeertmans/filesfinder@latest
# id: pp # Any id, to be used later to reference to files output
# with:
# # Only argument, a single string, to be passed as arguments to ff.
# # See `ff --help` for more help.
# # Default: "*"
# args: "zenohd"
# - name: Print files matching "zenohd"
# run: echo "${{ steps.pp.outputs.files }}"
# - name: Change directory --> from Zenoh-Flow/Zenoh-Flow to Home directory
# run: |
# cd ..
# cd ..
- name: dump
run: |
echo 'github.workspace === ${{ github.workspace }}'
echo "GITHUB_WORKSPACE === $GITHUB_WORKSPACE"
echo 'runner.workspace === ${{ runner.workspace }}'
echo "RUNNER_WORKSPACE === $RUNNER_WORKSPACE"
# #it works
# - name: Check out my other private repo
# uses: actions/checkout@master
# with:
# repository: eclipse-zenoh/zenoh
#but this is better
- name: Clone Repository
run: git clone -b '0.7.2-rc' https://github.com/eclipse-zenoh/zenoh.git ./../../zenoh
#uses: actions/checkout@master
# path: main
# ref: b9103c3
# token: ${{ secrets.PAT }}
# token: ${{ github.token }}
- name: Pwd
run: pwd
# - name: Change directory --> from Home directory to zenoh
# run: cd zenoh
- name: dump
run: |
echo 'github.workspace === ${{ github.workspace }}'
echo "GITHUB_WORKSPACE === $GITHUB_WORKSPACE"
echo 'runner.workspace === ${{ runner.workspace }}'
echo "RUNNER_WORKSPACE === $RUNNER_WORKSPACE"
# - name: git
# run: git checkout 0.7.2-rc
- name: Change directory --> from Zenoh-Flow to Home directory
run: |
cd ..
cd ..
- name: Change directory --> from Zenoh-Flow to Home directory
run: cd zenoh
# - name: Build Zenoh
# uses: actions-rs/cargo@v1
# with:
# command: build
# args: --verbose --all-targets
- name: Build Zenoh
run: cargo build --verbose --all-targets
- name: Change directory --> from Zenoh-Flow to Home directory
run: |
cd ..
- name: Pwd
run: pwd
- name: Change directory --> from Home directory to Zenoh
run: cd zenoh-flow
- name: dump
run: |
echo 'github.workspace === ${{ github.workspace }}'
echo "GITHUB_WORKSPACE === $GITHUB_WORKSPACE"
echo 'runner.workspace === ${{ runner.workspace }}'
echo "RUNNER_WORKSPACE === $RUNNER_WORKSPACE"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r manual-tests/requirements.txt
- name: Run Python automated-test.py script
run: |
output=$(python3 manual-tests/automated-test.py --build release --zenohd zenoh/target/debug/zenohd --zfctl zenoh-flow/release/debug/zfctl)