From e156066acf9ef4df3a94c8f4178795478709893e Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 4 Jul 2022 12:50:18 +0300 Subject: [PATCH] ci: fix gitly failure (compile gitly.scss to gitly.css) --- .github/workflows/v_apps_and_modules_compile.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/v_apps_and_modules_compile.yml b/.github/workflows/v_apps_and_modules_compile.yml index 06bfeb5232..d9c2ced61f 100644 --- a/.github/workflows/v_apps_and_modules_compile.yml +++ b/.github/workflows/v_apps_and_modules_compile.yml @@ -26,7 +26,8 @@ jobs: run: | sudo apt-get update sudo apt-get install --quiet -y libgc-dev libsodium-dev libssl-dev sqlite3 libsqlite3-dev valgrind libfreetype6-dev libxi-dev libxcursor-dev libgl-dev xfonts-75dpi xfonts-base - sudo apt-get install --quiet -y --no-install-recommends gfortran liblapacke-dev libopenblas-dev + sudo apt-get install --quiet -y --no-install-recommends gfortran liblapacke-dev libopenblas-dev ## for vsl/vtl + sudo apt-get install --quiet -y --no-install-recommends sassc ## needed by gitly - name: Build V Language Server (VLS) run: | @@ -65,6 +66,8 @@ jobs: v /tmp/gitly echo "Build Gitly with -autofree" v -autofree /tmp/gitly + echo "Compile gitly.css from gitly.scss" + sassc /tmp/gitly/static/css/gitly.scss > /tmp/gitly/static/css/gitly.css echo "Run first_run.v" v run /tmp/gitly/tests/first_run.v # /tmp/gitly/gitly -ci_run