Skip to content

Merge pull request #101 from lsst-sqre/tickets/DM-44607 #182

Merge pull request #101 from lsst-sqre/tickets/DM-44607

Merge pull request #101 from lsst-sqre/tickets/DM-44607 #182

Workflow file for this run

name: CI
"on":
push:
branches-ignore:
# These should always correspond to pull requests, so ignore them for
# the push trigger and let them be triggered by the pull_request
# trigger, avoiding running the workflow twice. This is a minor
# optimization so there's no need to ensure this is comprehensive.
- "dependabot/**"
- "renovate/**"
- "tickets/**"
- "u/**"
tags:
- "*"
pull_request: {}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and test
run: scripts/build-war.sh
build:
runs-on: ubuntu-latest
# Only do Docker builds of tagged releases and pull requests from ticket
# branches. This will still trigger on pull requests from untrusted
# repositories whose branch names match our tickets/* branch convention,
# but in this case the build will fail with an error since the secret
# won't be set.
if: >
startsWith(github.ref, 'refs/tags/')
|| startsWith(github.head_ref, 'tickets/')
steps:
- uses: actions/checkout@v4
- name: Define the Docker tag
id: vars
run: echo ::set-output name=tag::$(scripts/docker-tag.sh)
- name: Print the tag
id: print
run: echo ${{ steps.vars.outputs.tag }}
- name: Build and test
run: scripts/build-war.sh
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push the TAP server image
uses: docker/build-push-action@v5
with:
context: .
push: true
file: docker/Dockerfile.lsst-tap-service
tags: |
lsstdax/lsst-tap-service:${{ steps.vars.outputs.tag }}
ghcr.io/lsst-sqre/lsst-tap-service:${{ steps.vars.outputs.tag }}
cache-from: type=gha,scope=tap
cache-to: type=gha,mode=max,scope=tap
- name: Build and push the UWS database image
uses: docker/build-push-action@v5
with:
context: .
push: true
file: docker/Dockerfile.uws-db
tags: |
lsstdax/uws-db:${{ steps.vars.outputs.tag }}
ghcr.io/lsst-sqre/lsst-tap-uws-db:${{ steps.vars.outputs.tag }}
cache-from: type=gha,scope=uws-db
cache-to: type=gha,mode=max,scope=uws-db
- name: Build and push the mock qserv image
uses: docker/build-push-action@v5
with:
context: .
push: true
file: docker/Dockerfile.mock-qserv
tags: |
lsstdax/mock-qserv:${{ steps.vars.outputs.tag }}
ghcr.io/lsst-sqre/lsst-tap-mock-qserv:${{ steps.vars.outputs.tag }}
cache-from: type=gha,scope=mock-qserv
cache-to: type=gha,mode=max,scope=mock-qserv