Skip to content

Commit

Permalink
suppresion circle-ci/travis-ci and add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarbonneaux committed Nov 5, 2024
1 parent ff2fb39 commit 59bbafe
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 116 deletions.
90 changes: 0 additions & 90 deletions .circleci/config.yml

This file was deleted.

35 changes: 35 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build CI

on: [push, pull_request]

jobs:
build-noble:
env:
DEBIAN_FRONTEND: noninteractive
TZ: Europe/Paris

runs-on: ubuntu-latest
container: ubuntu:22.04

steps:
- uses: actions/checkout@v4
- name: setup os
run: |
apt-get update && apt-get install -y software-properties-common
apt-get -y install libz-dev wget \
libphp7.4-embed php7.4-dev autoconf automake gcc make \
libpcre3-dev libbz2-dev libbz2-dev libxml2-dev libkrb5-dev \
libargon2-dev libargon2-1 libsodium-dev
- name: Apache AuthMemeCookie Module - libmemcache version
run: dpkg -s libmemcached-dev && dpkg -L libmemcached-dev
- name: Apache AuthMemeCookie Module - Apache HTTPD Version
run: dpkg -s apache2 && dpkg -L apache2-dev && dpkg -L apache2
- name: Apache AuthMemeCookie Module - configure
run: |
autoconf -f
./configure --with-apxs=/usr/bin/apxs --with-libmemcached=/usr || (cat config.log; exit 1)
cat mod_auth_memcookie.h
- name: Apache AuthMemeCookie Module - make
run: make && ls -al .libs/mod_auth_memcookie.so
- name: Apache AuthMemeCookie Module - install
run: make install && apache2ctl configtest
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

0 comments on commit 59bbafe

Please sign in to comment.