Skip to content

Commit

Permalink
Linux Ubuntu Debian PostgreSQL 16 Binaries are Now Available (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreMikulec authored Oct 9, 2023
1 parent 110c0c7 commit 770f799
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: plr CI
run-name: plr CI - ${{ github.event.head_commit.message }}

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
jobs:
master:
runs-on: ubuntu-latest
Expand All @@ -18,6 +18,7 @@ jobs:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
sudo apt-get install -qq r-base-dev acl bison flex libssl-dev
sudo R --version
sudo /etc/init.d/postgresql stop
sudo apt-get remove --purge postgresql\*
sudo rm -rf /etc/postgresql /var/lib/postgresql
Expand Down Expand Up @@ -51,6 +52,15 @@ jobs:
strategy:
matrix:
include:
# SEEN SEP 2023
# Ubuntu 22.04 ubuntu-latest
# https://github.com/actions/runner-images
# jammy (22.04, LTS)
# https://wiki.postgresql.org/wiki/Apt
# https://apt.postgresql.org/pub/repos/apt/dists/
# 16/ - 14-Sep-2023 12:35
# https://apt.postgresql.org/pub/repos/apt/dists/jammy-pgdg/
- pg: 16
- pg: 15
- pg: 14
- pg: 13
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ name: plr daily
run-name: plr daily - ${{ github.event.head_commit.message }}

on:
push:
pull_request:
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '30 1 * * *'
Expand All @@ -21,6 +24,7 @@ jobs:
run: |
sudo apt-get update -qq
sudo apt-get install -qq r-base-dev acl bison flex libssl-dev
sudo R --version
sudo /etc/init.d/postgresql stop
sudo apt-get remove --purge postgresql\*
sudo rm -rf /etc/postgresql /var/lib/postgresql
Expand Down

0 comments on commit 770f799

Please sign in to comment.