forked from Alinto/sope
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (37 loc) · 1022 Bytes
/
swift.yml
File metadata and controls
39 lines (37 loc) · 1022 Bytes
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
name: Build and Test
on:
push:
pull_request:
schedule:
- cron: "15 15 * * 1"
jobs:
linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
image:
- ubuntu:noble
container: ${{ matrix.image }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Update APT and Install Cache Deps
run: |
apt-get -y -qq update
apt-get -y -qq install \
libxml2-dev libldap2 libldap-dev libpq-dev libpq5 \
libmemcached-dev libmemcached-tools libcurl4-openssl-dev \
libcrypt-dev make libz-dev gobjc \
gnustep-make gnustep-base-runtime libgnustep-base-dev
- name: Configure SOPE for Debug
run: ./configure \
--with-gnustep \
--enable-debug \
--disable-strip \
--enable-xml \
--enable-postgresql \
--enable-openldap \
--with-ssl=ssl
- name: Build SOPE
run: make all