-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub actions, clean up compiler warnings
- Loading branch information
Showing
4 changed files
with
102 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: Cross compile for Windows | ||
on: | ||
- push | ||
- pull_request | ||
jobs: | ||
build: | ||
name: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up MinGW | ||
run: | | ||
sudo apt update | ||
sudo apt install -y gcc-mingw-w64-i686-win32 | ||
- name: Load Pidgin from cache | ||
id: pidgin-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: pidgin | ||
key: pidgin-2.14.1 | ||
|
||
- name: Download Pidgin | ||
if: steps.pidgin-cache.outputs.cache-hit != 'true' | ||
run: | | ||
curl --http1.1 -L https://sourceforge.net/projects/pidgin/files/Pidgin/2.14.1/pidgin-2.14.1.tar.bz2/download -o pidgin.tar.bz2 | ||
tar -xf pidgin.tar.bz2 | ||
mv pidgin-2.14.1 pidgin | ||
curl --http1.1 -L https://sourceforge.net/projects/pidgin/files/Pidgin/2.14.1/pidgin-2.14.1-win32-bin.zip/download -o pidgin-win32bin.zip | ||
unzip pidgin-win32bin.zip | ||
cp pidgin-2.14.1-win32bin/libpurple.dll pidgin/libpurple/ | ||
- name: Load Win32 deps from cache | ||
id: win32-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: win32-dev | ||
key: win32-dev | ||
|
||
- name: Setup WinPidgin build | ||
if: steps.win32-cache.outputs.cache-hit != 'true' | ||
run: | | ||
mkdir win32-dev | ||
curl --http1.1 -L http://ftp.gnome.org/pub/gnome/binaries/win32/glib/2.28/glib-dev_2.28.8-1_win32.zip -o glib-dev.zip | ||
unzip glib-dev.zip -d win32-dev/glib-2.28.8 | ||
curl --http1.1 -L http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/gettext-runtime-dev_0.18.1.1-2_win32.zip -o gettext-runtime.zip | ||
unzip gettext-runtime.zip -d win32-dev/glib-2.28.8 | ||
curl --http1.1 -L http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/zlib-dev_1.2.5-2_win32.zip -o zlib-dev.zip | ||
unzip zlib-dev.zip -d win32-dev/glib-2.28.8 | ||
cd win32-dev | ||
curl --http1.1 -L https://github.com/jgeboski/purple-facebook/releases/download/downloads/json-glib-0.14.tar.gz -o json-glib.tar.gz | ||
tar -xf json-glib.tar.gz | ||
rm json-glib.tar.gz | ||
cd .. | ||
ls win32-dev/ | ||
- name: make | ||
run: | | ||
export WIN32_CC=i686-w64-mingw32-gcc | ||
export WIN32_DEV_TOP=win32-dev | ||
export PIDGIN_TREE_TOP=pidgin | ||
make libteams.dll | ||
- name: archive | ||
if: ${{ !env.ACT }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: plugin | ||
path: lib*.dll |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Linux | ||
on: | ||
- push | ||
- pull_request | ||
jobs: | ||
build: | ||
name: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: install deps | ||
run: | | ||
sudo apt update | ||
sudo apt install -y libglib2.0-dev libjson-glib-dev gettext | ||
# We only need these to build, not to run. Skip the dependency check. | ||
sudo apt download libpurple0 libpurple-dev | ||
sudo dpkg --force-depends -i libpurple0*.deb libpurple-dev*.deb | ||
- name: make | ||
run: make | ||
|
||
- name: archive | ||
if: ${{ !env.ACT }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: plugin | ||
path: lib*.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters