mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-05 16:04:19 +01:00
- remove .travis.yml
- ./travis_{script,install}.sh -> ./ci_{script,install}.sh
- flush stdout in test script to see logs more promptly
- adjust git config to ignore 'detachedHead' warnings
37 lines
440 B
Bash
Executable File
37 lines
440 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
|
|
}
|
|
|
|
cd code
|
|
|
|
case "$1" in
|
|
("host")
|
|
pio_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
|