Skip to content

Commit 77bd0c4

Browse files
committed
Add CI steps to web build scripts
1 parent b83f98c commit 77bd0c4

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

tools/build_web.cmd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
@echo off
22

3+
if "%CI%" == "true" (
4+
pip install -r web/requirements.txt
5+
)
6+
37
python web/wikigen.py build

tools/build_web.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
#!/bin/bash
22

3+
if [ "$CI" = "true" ]; then
4+
pip install -r web/requirements.txt
5+
fi
6+
37
python web/wikigen.py build

0 commit comments

Comments
 (0)