-
Notifications
You must be signed in to change notification settings - Fork 5
50 lines (45 loc) · 1.21 KB
/
linux.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Linux
on:
- push
- pull_request
jobs:
build:
name: build
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
attestations: write
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- 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
- name: release
if: ${{ !env.ACT }}
uses: ncipollo/release-action@v1
with:
artifacts: lib*.so
tag: nightly-${{ github.sha }}
name: Nightly ${{ github.sha }}
allowUpdates: true
makeLatest: true
- name: attest
if: ${{ !env.ACT }}
uses: actions/attest-build-provenance@v1
with:
subject-path: lib*.so