Skip to content

feat: disable CoW on linux systems #28

feat: disable CoW on linux systems

feat: disable CoW on linux systems #28

Workflow file for this run

name: Build ephemeral-postgres
on:
push:
branches:
- main
pull_request:
schedule:
- cron: "0 0 * * 1"
jobs:
ci:
runs-on: ubuntu-latest
env:
EPHEMERAL_POSTGRES_AUTO_UPDATE: 0
strategy:
matrix:
postgres-version: [
14,
15,
16,
17
]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build ephemeral-postgres ${{ matrix.postgres-version }}
run: ./bin/build-image.sh "${{ matrix.postgres-version }}"
- name: Test ephemeral-postgres ${{ matrix.postgres-version }}
run: ./bin/test-image.sh "${{ matrix.postgres-version }}"
timeout-minutes: 2
- name: Push ephemeral-postgres ${{ matrix.postgres-version }}
if: github.ref_name == 'main'
run: ./bin/push-image.sh "${{ matrix.postgres-version }}"