Skip to content

Commit

Permalink
Add GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
df7cb committed Jul 29, 2023
1 parent 4fda232 commit b0054a5
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 2 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

defaults:
run:
shell: sh

strategy:
matrix:
pgversion:
- 16
- 15
- 14
- 13
- 12
- 11
- 10

env:
PGVERSION: ${{ matrix.pgversion }}

steps:
- name: checkout
uses: actions/checkout@v3

- name: install pg
run: |
sudo apt-get install -y libclamav-dev
sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -v $PGVERSION -p -i
sudo -u postgres createuser -s "$USER"
chmod --verbose go+rx $HOME # drwxr-x--- runner docker /home/runner
sudo pg_conftool $PGVERSION main set pg_snakeoil.signature_dir $PWD/testfiles
sudo service postgresql restart # reload isn't enough for PGC_SU_BACKEND
- name: build
run: |
make PROFILE="-Werror"
sudo -E make install
- name: test
run: |
make installcheck
- name: show regression diffs
if: ${{ failure() }}
run: |
cat regression.diffs
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ pg_snakeoil provides ClamAV scanning of all data in PostgreSQL in a way that
does not interfere with the proper functioning of PostgreSQL and does not cause
collateral damage or unnecessary downtimes.

[![Build Status](https://travis-ci.org/credativ/pg_snakeoil.svg?branch=master)](https://travis-ci.org/credativ/pg_snakeoil)

## Usage

### SQL Functions
Expand Down

0 comments on commit b0054a5

Please sign in to comment.