fix cmake CI for new script tests

This commit is contained in:
Philippe Teuwen 2021-10-12 00:31:08 +02:00
parent d8e943e03c
commit 950afc4d04
3 changed files with 24 additions and 4 deletions

View file

@ -127,7 +127,12 @@ jobs:
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
- name: Prepare Build Folders
run: mkdir -p client/build
run: |
mkdir -p client/build
ln -s ../cmdscripts client/build/
ln -s ../luascripts client/build/
ln -s ../pyscripts client/build/
ln -s ../lualibs client/build/
- name: Initiate cmake environment
run: cmake ..

View file

@ -101,7 +101,12 @@ jobs:
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
- name: Prepare Build Folders
run: mkdir -p client/build
run: |
mkdir -p client/build
ln -s ../cmdscripts client/build/
ln -s ../luascripts client/build/
ln -s ../pyscripts client/build/
ln -s ../lualibs client/build/
- name: Initiate cmake environment
run: cmake ..

View file

@ -71,7 +71,12 @@ jobs:
run: make clean
- name: Prepare cmake build folders
run: mkdir -p client/build
run: |
mkdir -p client/build
ln -s ../cmdscripts client/build/
ln -s ../luascripts client/build/
ln -s ../pyscripts client/build/
ln -s ../lualibs client/build/
- name: Initiate cmake environment
run: cmake -G"MSYS Makefiles" ..
@ -151,7 +156,12 @@ jobs:
run: make clean
- name: Prepare cmake build folders
run: mkdir -p client/build
run: |
mkdir -p client/build
ln -s ../cmdscripts client/build/
ln -s ../luascripts client/build/
ln -s ../pyscripts client/build/
ln -s ../lualibs client/build/
- name: Initiate cmake environment
run: cmake ..