Files
espurna/ci_install.sh
Max Prokhorov 76f187b13b ci: workaround for the pio-test
Install the platform explicitly, since the recent version does not do it anymore
(which is hopefully a bug)
2021-03-29 22:38:05 +03:00

42 lines
509 B
Bash
Executable File

#!/bin/bash
set -x -e -v
npm_install() {
npm install -g npm@latest
npm ci
}
pio_install() {
pip3 install -U platformio
pio upgrade --dev
pio platform update -p
}
host_install() {
pio platform install native
}
cd code
case "$1" in
("host")
pio_install
host_install
;;
("webui")
npm_install
;;
("build")
pio_install
;;
("release")
npm_install
pio_install
;;
(*)
echo -e "\e[1;33mUnknown stage name, exiting!\e[0m"
exit 1
;;
esac