This commit is contained in:
parent
5bbcf4cebb
commit
4fff4ff79e
2 changed files with 11 additions and 4 deletions
|
@ -17,9 +17,6 @@ jobs:
|
|||
apt install -y \
|
||||
imagemagick wget
|
||||
|
||||
- name: fteqw
|
||||
run: wget https://www.fteqw.org/dl/fteqw_linux64.zip && unzip fteqw_linux64.zip && chmod +x fteqw64
|
||||
|
||||
- name: setup env
|
||||
run: |
|
||||
echo $PRIVATE_KEY > private-key.pem
|
||||
|
|
12
Makefile
12
Makefile
|
@ -1,7 +1,17 @@
|
|||
|
||||
ENGINE_URL=https://code.idtech.space/fte/fteqw
|
||||
ENGINE_CLBUILD=m-dbg
|
||||
|
||||
all: list
|
||||
|
||||
list:
|
||||
list: fteqw64
|
||||
./start.sh
|
||||
|
||||
fteqw64:
|
||||
if [ ! -d ThirdParty/fteqw ];then mkdir -p ThirdParty; git clone --depth 1 $(ENGINE_URL) ThirdParty/fteqw;else cd ./ThirdParty/fteqw && git pull;fi
|
||||
cd ThirdParty/fteqw/engine && $(MAKE) makelibs ARCH=x86_64
|
||||
cd ThirdParty/fteqw/engine && $(MAKE) $(ENGINE_CLBUILD) ARCH=x86_64
|
||||
install -m 0777 ./ThirdParty/fteqw/engine/debug/fteqw ./fteqw64
|
||||
|
||||
index:
|
||||
./index.sh
|
||||
|
|
Loading…
Reference in a new issue