* fix: AppImage: add libgail, fixes #90 * chore: push action-gh-release from v1 to v2
This commit is contained in:
committed by
GitHub
parent
42bb0a120b
commit
c32080d7d6
18
.github/workflows/release.yml
vendored
18
.github/workflows/release.yml
vendored
@@ -32,7 +32,9 @@ jobs:
|
|||||||
set +x
|
set +x
|
||||||
./configure ${{ matrix.clionly }} --with-werror
|
./configure ${{ matrix.clionly }} --with-werror
|
||||||
- name: make
|
- name: make
|
||||||
run: make -j$(sysctl -n hw.ncpu || 2)
|
run: |
|
||||||
|
cat Makefile.config
|
||||||
|
make -j$(sysctl -n hw.ncpu || 2)
|
||||||
- name: check executability
|
- name: check executability
|
||||||
run: ./dvdisaster --version
|
run: ./dvdisaster --version
|
||||||
- name: check executable (GUI)
|
- name: check executable (GUI)
|
||||||
@@ -49,7 +51,7 @@ jobs:
|
|||||||
run: ./.github/workflows/make-mac-app.sh ${{ github.ref }}
|
run: ./.github/workflows/make-mac-app.sh ${{ github.ref }}
|
||||||
id: dist
|
id: dist
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: ${{ steps.dist.outputs.archive }}
|
files: ${{ steps.dist.outputs.archive }}
|
||||||
draft: true
|
draft: true
|
||||||
@@ -112,7 +114,7 @@ jobs:
|
|||||||
cd dist
|
cd dist
|
||||||
dvdisaster.exe --version
|
dvdisaster.exe --version
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: ${{ steps.dist.outputs.archive }}
|
files: ${{ steps.dist.outputs.archive }}
|
||||||
draft: true
|
draft: true
|
||||||
@@ -138,7 +140,7 @@ jobs:
|
|||||||
run: ./.github/workflows/make-dist.sh ${{ github.ref }}
|
run: ./.github/workflows/make-dist.sh ${{ github.ref }}
|
||||||
id: dist
|
id: dist
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: ${{ steps.dist.outputs.archive }}
|
files: ${{ steps.dist.outputs.archive }}
|
||||||
draft: true
|
draft: true
|
||||||
@@ -156,7 +158,7 @@ jobs:
|
|||||||
mkdir -p /tmp/dist
|
mkdir -p /tmp/dist
|
||||||
docker run --device /dev/fuse --privileged --name uu -d -v $PWD:/code -v /tmp/dist:/dist ubuntu:14.04 sleep 1800
|
docker run --device /dev/fuse --privileged --name uu -d -v $PWD:/code -v /tmp/dist:/dist ubuntu:14.04 sleep 1800
|
||||||
- name: install prerequisites in docker
|
- name: install prerequisites in docker
|
||||||
run: docker exec uu sh -c 'sudo apt update && sudo apt install -y libglib2.0-dev ghostscript man libgtk2.0-dev gtk2-engines-pixbuf gtk2-engines pkg-config gnome-themes-standard fuse'
|
run: docker exec uu sh -c 'sudo apt update && sudo apt install -y libglib2.0-dev ghostscript man libgtk2.0-dev gtk2-engines-pixbuf gtk2-engines libgail-common pkg-config gnome-themes-standard fuse'
|
||||||
- name: configure in docker
|
- name: configure in docker
|
||||||
run: docker exec uu sh -c 'cd /code && ./configure --prefix=/usr'
|
run: docker exec uu sh -c 'cd /code && ./configure --prefix=/usr'
|
||||||
- name: make in docker
|
- name: make in docker
|
||||||
@@ -164,7 +166,9 @@ jobs:
|
|||||||
- name: make install in docker
|
- name: make install in docker
|
||||||
run: docker exec uu sh -c 'cd /code && touch documentation/user-manual/manual.pdf && make install DESTDIR=/dist'
|
run: docker exec uu sh -c 'cd /code && touch documentation/user-manual/manual.pdf && make install DESTDIR=/dist'
|
||||||
- name: copy things to dist in docker
|
- name: copy things to dist in docker
|
||||||
run: docker exec uu sh -c 'install -d /dist/usr/lib/gtk-2.0 && cp -va $(pkg-config --variable=libdir gtk+-2.0)/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/* /dist/usr/lib/gtk-2.0'
|
run: |
|
||||||
|
docker exec uu sh -c 'install -d /dist/usr/lib/gtk-2.0 && cp -va $(pkg-config --variable=libdir gtk+-2.0)/gtk-2.0/$(pkg-config --variable=gtk_binary_version gtk+-2.0)/* /dist/usr/lib/gtk-2.0'
|
||||||
|
docker exec uu sh -c 'cp -va $(pkg-config --variable=libdir gtk+-2.0)/gtk-2.0/modules /dist/usr/lib/gtk-2.0/'
|
||||||
- name: build appimage in docker
|
- name: build appimage in docker
|
||||||
run: |
|
run: |
|
||||||
wget -q https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
|
wget -q https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
|
||||||
@@ -193,7 +197,7 @@ jobs:
|
|||||||
echo "archive=$archive" >> "$GITHUB_OUTPUT"
|
echo "archive=$archive" >> "$GITHUB_OUTPUT"
|
||||||
echo "appimage is <$archive>"
|
echo "appimage is <$archive>"
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: ${{ steps.dist.outputs.archive }}
|
files: ${{ steps.dist.outputs.archive }}
|
||||||
draft: true
|
draft: true
|
||||||
|
|||||||
6
.github/workflows/tests.yml
vendored
6
.github/workflows/tests.yml
vendored
@@ -32,7 +32,11 @@ jobs:
|
|||||||
set +x
|
set +x
|
||||||
./configure ${{ matrix.clionly }} ${{ matrix.debugprintf }} --with-werror
|
./configure ${{ matrix.clionly }} ${{ matrix.debugprintf }} --with-werror
|
||||||
- name: make
|
- name: make
|
||||||
run: make -j$(sysctl -n hw.ncpu || 2)
|
run: |
|
||||||
|
cat Makefile.config
|
||||||
|
echo xxxxxxxxxxxxxxxxxxxxxxx
|
||||||
|
grep -i icon GNUmakefile
|
||||||
|
make -j$(sysctl -n hw.ncpu || 2)
|
||||||
- name: check executability
|
- name: check executability
|
||||||
run: ./dvdisaster --version
|
run: ./dvdisaster --version
|
||||||
- name: check executable (GUI)
|
- name: check executable (GUI)
|
||||||
|
|||||||
@@ -118,11 +118,11 @@ ${BUILDTMP}/build.o : src/build.c src/build.h
|
|||||||
@echo "Compiling:" src/build.o
|
@echo "Compiling:" src/build.o
|
||||||
@$(CC) $(COPTS) -c src/build.c -o $@
|
@$(CC) $(COPTS) -c src/build.c -o $@
|
||||||
|
|
||||||
${BUILDTMP}/closure.o : src/closure.c src/inlined-icons.h
|
${BUILDTMP}/closure.o : src/closure.c $(ICONS)
|
||||||
@echo "Compiling:" src/closure.c
|
@echo "Compiling:" src/closure.c
|
||||||
@$(CC) $(COPTS) -c src/closure.c -o $@
|
@$(CC) $(COPTS) -c src/closure.c -o $@
|
||||||
|
|
||||||
${BUILDTMP}/icon-factory.o : src/icon-factory.c src/inlined-icons.h
|
${BUILDTMP}/icon-factory.o : src/icon-factory.c $(ICONS)
|
||||||
@echo "Compiling:" src/icon-factory.c
|
@echo "Compiling:" src/icon-factory.c
|
||||||
@$(CC) $(COPTS) -c src/icon-factory.c -o $@
|
@$(CC) $(COPTS) -c src/icon-factory.c -o $@
|
||||||
|
|
||||||
|
|||||||
2
configure
vendored
2
configure
vendored
@@ -26,7 +26,7 @@
|
|||||||
BASH_BASED_CONFIGURE=./scripts/bash-based-configure
|
BASH_BASED_CONFIGURE=./scripts/bash-based-configure
|
||||||
BASH_BASED_CONFIGURE_OPTS="--buildtmp=$(pwd)/build $@"
|
BASH_BASED_CONFIGURE_OPTS="--buildtmp=$(pwd)/build $@"
|
||||||
REQUIRED_CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -I. -pipe"
|
REQUIRED_CFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -I. -pipe"
|
||||||
RECOMMENDED_CFLAGS="-O2 -fomit-frame-pointer -Wall -Wno-unknown-warning-option -Wno-deprecated-declarations -Wno-stringop-truncation -Wno-format-zero-length"
|
RECOMMENDED_CFLAGS="-O2 -fomit-frame-pointer -Wall -Wno-unknown-warning-option -Wno-deprecated-declarations -Wno-stringop-truncation -Wno-format-zero-length -Wno-unused-but-set-variable"
|
||||||
DEBUG_CFLAGS="-ggdb -Wall"
|
DEBUG_CFLAGS="-ggdb -Wall"
|
||||||
|
|
||||||
if test -e $BASH_BASED_CONFIGURE; then
|
if test -e $BASH_BASED_CONFIGURE; then
|
||||||
|
|||||||
@@ -23,7 +23,10 @@
|
|||||||
/*** src type: some GUI code ***/
|
/*** src type: some GUI code ***/
|
||||||
|
|
||||||
#include "dvdisaster.h"
|
#include "dvdisaster.h"
|
||||||
|
|
||||||
|
#ifdef WITH_GUI_YES
|
||||||
#include "inlined-icons.h"
|
#include "inlined-icons.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
#define Verbose g_printf
|
#define Verbose g_printf
|
||||||
|
|||||||
Reference in New Issue
Block a user