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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
0 deletions
-
ci_install.sh
|
|
@ -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 |
|
|
|