Browse Source

ci: workaround for the pio-test

Install the platform explicitly, since the recent version does not do it anymore
(which is hopefully a bug)
mcspr-patch-1
Max Prokhorov 3 years ago
committed by GitHub
parent
commit
76f187b13b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      ci_install.sh

+ 5
- 0
ci_install.sh View File

@ -13,11 +13,16 @@ pio_install() {
pio platform update -p
}
host_install() {
pio platform install native
}
cd code
case "$1" in
("host")
pio_install
host_install
;;
("webui")
npm_install


Loading…
Cancel
Save