-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Meson Build System Merge #548
base: master
Are you sure you want to change the base?
Changes from all commits
21cb9d2
67658cc
c6b0a45
6e625fb
39d80ad
27cd07c
64a2e79
cba56a0
1f65f53
582f290
9bd73f2
08f9293
3f98c67
931a916
9d4b92e
33d1285
5bca8ce
dc44f9c
423d65a
e108c27
23e4451
cab3fe4
3edd65a
e974b9a
96036db
06a5fac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: CI | ||
|
||
on: | ||
- pull_request | ||
- push | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Dependencies | ||
run: | | ||
sudo apt-get update -y | ||
sudo apt-get install -y --no-install-recommends clang git make pkg-config meson libglib2.0-dev libjson-glib-dev libpurple-dev libpurple0 libjson-glib-1.0-0 libglib2.0-0 | ||
|
||
- name: make | ||
run: | | ||
meson setup build | ||
cd build | ||
ninja | ||
|
||
- uses: actions/cache@v2 | ||
id: cache | ||
with: | ||
path: /tmp/purple-facebook/ | ||
key: purple-facebook | ||
|
||
- name: archive | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: plugin | ||
path: build/lib*.so |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1 @@ | ||
*.la | ||
*.lo | ||
*.o | ||
*.tar.* | ||
.deps | ||
.libs | ||
.pidgin | ||
aclocal.m4 | ||
autom4te.cache | ||
build-aux | ||
config.log | ||
config.status | ||
configure | ||
debian | ||
include | ||
INSTALL | ||
libtool | ||
libtool.m4 | ||
lt*.m4 | ||
Makefile | ||
Makefile.in | ||
pidgin | ||
win32-install-dir | ||
build |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
James Geboski <jgeboski@gmail.com> (original author) | ||
dequis <dx@dxzone.com.ar> (current maintainer) | ||
dequis <dx@dxzone.com.ar> (previous maintainer) | ||
James Carthew <jcarthew@gmail.com> (hacking current fork) |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This probably shouldn't be merged with this here, it'd be very confusing.