Remove linux build, as docker doesnt like it
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
cda0877fd0
commit
0b6ae0fe38
2 changed files with 15 additions and 15 deletions
|
@ -8,13 +8,13 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- luacheck --std +love -g -u -t .
|
- luacheck --std +love -g -u -t .
|
||||||
- name: build
|
- name: build
|
||||||
image: ubuntu:jammy
|
image: bash
|
||||||
when:
|
when:
|
||||||
event: tag
|
event: tag
|
||||||
commands:
|
commands:
|
||||||
- apt-get update
|
- apk update
|
||||||
- apt-get upgrade
|
- apk upgrade
|
||||||
- apt-get -y install curl zip git
|
- apk --no-cache add curl zip git
|
||||||
- chmod +x tools/build.sh
|
- chmod +x tools/build.sh
|
||||||
- bash tools/build.sh
|
- bash tools/build.sh
|
||||||
- name: release
|
- name: release
|
||||||
|
|
|
@ -33,17 +33,17 @@ downloadlove() {
|
||||||
rm love-$LOVE_VERSION-macos.zip
|
rm love-$LOVE_VERSION-macos.zip
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
mkdir linux
|
#mkdir linux
|
||||||
cd linux
|
#cd linux
|
||||||
curl -L -O $LOVE_LINUX
|
#curl -L -O $LOVE_LINUX
|
||||||
curl -L -O $APPIMAGETOOL
|
#curl -L -O $APPIMAGETOOL
|
||||||
|
|
||||||
./appimagetool-x86_64.AppImage --appimage-extract
|
#./appimagetool-x86_64.AppImage --appimage-extract
|
||||||
mv squashfs-root appimage
|
#mv squashfs-root appimage
|
||||||
chmod +x appimage/AppRun
|
#chmod +x appimage/AppRun
|
||||||
./love-$LOVE_VERSION-x86_64.AppImage --appimage-extract
|
#./love-$LOVE_VERSION-x86_64.AppImage --appimage-extract
|
||||||
chmod +x squashfs-root/AppRun
|
#chmod +x squashfs-root/AppRun
|
||||||
cd ..
|
#cd ..
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
}
|
}
|
||||||
|
@ -98,4 +98,4 @@ downloadlove
|
||||||
makelove
|
makelove
|
||||||
makewin64
|
makewin64
|
||||||
makemac
|
makemac
|
||||||
makelinux
|
#makelinux
|
Loading…
Reference in a new issue