github/workflows: Add workflow to build and test unix dev variant.
Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
240888a0d2
commit
0ee256b8b1
|
@ -51,6 +51,18 @@ jobs:
|
||||||
if: failure()
|
if: failure()
|
||||||
run: tests/run-tests.py --print-failures
|
run: tests/run-tests.py --print-failures
|
||||||
|
|
||||||
|
dev:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Build
|
||||||
|
run: source tools/ci.sh && ci_unix_dev_build
|
||||||
|
- name: Run main test suite
|
||||||
|
run: source tools/ci.sh && ci_unix_dev_run_tests
|
||||||
|
- name: Print failures
|
||||||
|
if: failure()
|
||||||
|
run: tests/run-tests.py --print-failures
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -393,6 +393,14 @@ function ci_unix_standard_run_perfbench {
|
||||||
(cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/micropython ./run-perfbench.py 1000 1000)
|
(cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/micropython ./run-perfbench.py 1000 1000)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function ci_unix_dev_build {
|
||||||
|
ci_unix_build_helper VARIANT=dev
|
||||||
|
}
|
||||||
|
|
||||||
|
function ci_unix_dev_run_tests {
|
||||||
|
ci_unix_run_tests_helper VARIANT=dev
|
||||||
|
}
|
||||||
|
|
||||||
function ci_unix_coverage_setup {
|
function ci_unix_coverage_setup {
|
||||||
sudo pip3 install setuptools
|
sudo pip3 install setuptools
|
||||||
sudo pip3 install pyelftools
|
sudo pip3 install pyelftools
|
||||||
|
|
Loading…
Reference in New Issue