aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-01-13 13:19:58 -0500
committerAdam Harrison <adamdharrison@gmail.com>2023-01-13 13:19:58 -0500
commitc88534f4bc0f72d108424f8227d2484083a476eb (patch)
tree22a6cd90f00bf8537a136b695c1a21f2dcd1b881 /.github
parent0f9fb0343f983418051a88ef630c267e6954f3bb (diff)
downloadlite-xl-plugin-manager-c88534f4bc0f72d108424f8227d2484083a476eb.tar.gz
lite-xl-plugin-manager-c88534f4bc0f72d108424f8227d2484083a476eb.zip
Added in color support, renamed things to addons.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6a41bfd..743c5fa 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -20,13 +20,13 @@ jobs:
CC=musl-gcc ./build.sh -DLPM_STATIC -DLPM_VERSION='"'$FULL_VERSION-x86_64-linux'"' -static && tar -czvf lpm-$FULL_VERSION-x86_64-linux.tar.gz lpm
cp lpm lpm.x86_64-linux
cp lpm /tmp/lpm
- - name: Package Debian/Ubuntu
- env: { ARCH: "amd64", DESCRIPTION: "A plugin manager for the lite-xl text editor.", MAINTAINER: "Adam Harrison <adamdharrison@gmail.com>" }
- run: |
- export NAME=lpm_$VERSION.0-$REV""_$ARCH
- mkdir -p $NAME/usr/bin $NAME/DEBIAN && cp lpm $NAME/usr/bin
- printf "Package: lpm\nVersion: $VERSION\nArchitecture: $ARCH\nMaintainer: $MAINTAINER\nDescription: $DESCRIPTION\n" > $NAME/DEBIAN/control
- dpkg-deb --build --root-owner-group $NAME
+ # - name: Package Debian/Ubuntu
+ # env: { ARCH: "amd64", DESCRIPTION: "A plugin manager for the lite-xl text editor.", MAINTAINER: "Adam Harrison <adamdharrison@gmail.com>" }
+ # run: |
+ # export NAME=lpm_$VERSION.0-$REV""_$ARCH
+ # mkdir -p $NAME/usr/bin $NAME/DEBIAN && cp lpm $NAME/usr/bin
+ # printf "Package: lpm\nVersion: $VERSION\nArchitecture: $ARCH\nMaintainer: $MAINTAINER\nDescription: $DESCRIPTION\n" > $NAME/DEBIAN/control
+ # dpkg-deb --build --root-owner-group $NAME
- name: Build Windows
run: |
sudo apt-get install mingw-w64 && ./build.sh clean && CC=x86_64-w64-mingw32-gcc AR=x86_64-w64-mingw32-gcc-ar WINDRES=x86_64-w64-mingw32-windres CMAKE_DEFAULT_FLAGS="-DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=NEVER -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_SYSTEM_INCLUDE_PATH=/usr/share/mingw-w64/include" LZMA_CONFIGURE="--host=x86_64-w64-mingw32" GIT2_CONFIGURE="-DDLLTOOL=x86_64-w64-mingw32-dlltool" ./build.sh -DLPM_STATIC -DLPM_VERSION='"'$VERSION-x86_64-windows'"' && zip -r lpm-$VERSION-x86_64-windows.zip lpm.exe