fix and add features #157
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Checks | |
on: | |
pull_request: | |
branches: master | |
jobs: | |
build-ckan-2-11: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: | | |
/tmp/.buildx-cache-alpine-2-11 | |
/tmp/.buildx-cache-ubuntu-2-11 | |
key: ${{ runner.os }}-buildx-2-11-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx-2-11 | |
- name: Get docker tag for Alpine image | |
id: alpine | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/ckan/2.11/Dockerfile)" >> $GITHUB_OUTPUT | |
- name: Build CKAN 2.11 alpine | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/ckan/2.11 | |
file: ./images/ckan/2.11/Dockerfile | |
push: false | |
tags: keitaro/ckan:${{ steps.alpine.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-alpine-2-11 | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-alpine-2-11 | |
- name: Get docker tag for Ubuntu image | |
id: ubuntu | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/ckan/2.11/Dockerfile.focal)" >> $GITHUB_OUTPUT | |
- name: Build CKAN 2.11 ubuntu | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/ckan/2.11 | |
file: ./images/ckan/2.11/Dockerfile.focal | |
push: false | |
tags: keitaro/ckan:${{ steps.ubuntu.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-ubuntu-2-11 | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-ubuntu-2-11 | |
build-args: | | |
--progress=plain | |
build-ckan-2-10: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: | | |
/tmp/.buildx-cache-alpine-2-10 | |
/tmp/.buildx-cache-ubuntu-2-10 | |
/tmp/.buildx-cache-alpine-2-10-xloader | |
key: ${{ runner.os }}-buildx-2-10-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx-2-10 | |
- name: Get docker tag for Alpine image | |
id: alpine | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/ckan/2.10/Dockerfile)" >> $GITHUB_OUTPUT | |
- name: Build CKAN 2.10 alpine | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/ckan/2.10 | |
file: ./images/ckan/2.10/Dockerfile | |
push: false | |
tags: keitaro/ckan:${{ steps.alpine.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-alpine-2-10 | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-alpine-2-10 | |
- name: Get docker tag for Alpine xloader image | |
id: alpine-xloader | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/ckan/2.10/Dockerfile.xloader)" >> $GITHUB_OUTPUT | |
- name: Build CKAN 2.10 alpine xloader | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/ckan/2.10 | |
file: ./images/ckan/2.10/Dockerfile.xloader | |
push: false | |
tags: keitaro/ckan:${{ steps.alpine-xloader.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-alpine-2-10-xloader | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-alpine-2-10-xloader | |
- name: Get docker tag for Ubuntu image | |
id: ubuntu | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/ckan/2.10/Dockerfile.focal)" >> $GITHUB_OUTPUT | |
- name: Build CKAN 2.10 ubuntu | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/ckan/2.10 | |
file: ./images/ckan/2.10/Dockerfile.focal | |
push: false | |
tags: keitaro/ckan:${{ steps.ubuntu.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-ubuntu-2-10 | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-ubuntu-2-10 | |
build-args: | | |
--progress=plain | |
build-ckan-2-9: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: | | |
/tmp/.buildx-cache-alpine-2-9 | |
/tmp/.buildx-cache-ubuntu-2-9 | |
key: ${{ runner.os }}-buildx-2-9-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx-2-9 | |
- name: Get docker tag for Alpine image | |
id: alpine | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/ckan/2.9/Dockerfile)" >> $GITHUB_OUTPUT | |
- name: Build CKAN 2.9 alpine | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/ckan/2.9 | |
file: ./images/ckan/2.9/Dockerfile | |
push: false | |
tags: keitaro/ckan:${{ steps.alpine.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-alpine-2-9 | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-alpine-2-9 | |
- name: Get docker tag for Ubuntu image | |
id: ubuntu | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/ckan/2.9/Dockerfile.focal)" >> $GITHUB_OUTPUT | |
- name: Build CKAN 2.9 ubuntu | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/ckan/2.9 | |
file: ./images/ckan/2.9/Dockerfile.focal | |
push: false | |
tags: keitaro/ckan:${{ steps.ubuntu.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-ubuntu-2-9 | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-ubuntu-2-9 | |
build-args: | | |
--progress=plain | |
build-ckan-2-8: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: | | |
/tmp/.buildx-cache-alpine-2-8 | |
/tmp/.buildx-cache-ubuntu-2-8 | |
key: ${{ runner.os }}-buildx-2-8-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx-2-8 | |
- name: Get docker tag for Alpine image | |
id: alpine | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/ckan/2.8/Dockerfile)" >> $GITHUB_OUTPUT | |
- name: Build CKAN 2.8 alpine | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/ckan/2.8 | |
file: ./images/ckan/2.8/Dockerfile | |
push: false | |
tags: keitaro/ckan:${{ steps.alpine.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-alpine-2-8 | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-alpine-2-8 | |
- name: Get docker tag for Ubuntu image | |
id: ubuntu | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/ckan/2.8/Dockerfile.focal)" >> $GITHUB_OUTPUT | |
- name: Build CKAN 2.8 ubuntu | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/ckan/2.8 | |
file: ./images/ckan/2.8/Dockerfile.focal | |
push: false | |
tags: keitaro/ckan:${{ steps.ubuntu.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-ubuntu-2-8 | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-ubuntu-2-8 | |
build-ckan-2-7: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: | | |
/tmp/.buildx-cache-alpine-2-7 | |
/tmp/.buildx-cache-ubuntu-2-7 | |
key: ${{ runner.os }}-buildx-2-7-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx-2-7 | |
- name: Get docker tag for Alpine image | |
id: alpine | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/ckan/2.7/Dockerfile)" >> $GITHUB_OUTPUT | |
- name: Build CKAN 2.7 alpine | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/ckan/2.7 | |
file: ./images/ckan/2.7/Dockerfile | |
push: false | |
tags: keitaro/ckan:${{ steps.alpine.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-alpine-2-7 | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-alpine-2-7 | |
- name: Get docker tag for Ubuntu image | |
id: ubuntu | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/ckan/2.7/Dockerfile.focal)" >> $GITHUB_OUTPUT | |
- name: Build CKAN 2.7 ubuntu | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/ckan/2.7 | |
file: ./images/ckan/2.7/Dockerfile.focal | |
push: false | |
tags: keitaro/ckan:${{ steps.ubuntu.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-ubuntu-2-7 | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-ubuntu-2-7 | |
build-ckan-datapusher: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.buildx-cache-datapusher | |
key: ${{ runner.os }}-buildx-datapusher-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx-datapusher | |
- name: Get docker tag for datapusher image | |
id: datapusher | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/datapusher/Dockerfile)" >> $GITHUB_OUTPUT | |
- name: Build CKAN datapusher | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/datapusher | |
file: ./images/datapusher/Dockerfile | |
push: false | |
tags: keitaro/ckandatapusher:${{ steps.datapusher.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-datapusher | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-datapusher | |
build-psql-init: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.buildx-cache-psql-init | |
key: ${{ runner.os }}-buildx-psql-init-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx-psql-init | |
- name: Get docker tag for psql-init image | |
id: psql-init | |
run: | | |
echo "IMAGE_TAG=$(awk -F '=' '/IMAGE_TAG/{print $2}' ./images/psql-init/Dockerfile)" >> $GITHUB_OUTPUT | |
- name: Build psql-init | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./images/psql-init | |
file: ./images/psql-init/Dockerfile | |
push: false | |
tags: keitaro/psql-init:${{ steps.psql-init.outputs.IMAGE_TAG }} | |
cache-from: type=local,src=/tmp/.buildx-cache-psql-init | |
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-psql-init |