Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@ on:
push:
branches:
- main
- "releases/**"
- releases/**
pull_request:

permissions:
contents: read

jobs:
publish_mapmatching_docker_image_to_acr:
name: Publish Map Matching Docker image to ACR
permissions:
id-token: write
contents: read
uses: HSLdevcom/jore4-tools/.github/workflows/shared-build-and-publish-docker-image.yml@shared-build-and-publish-docker-image-v1
uses: HSLdevcom/jore4-tools/.github/workflows/shared-build-and-publish-docker-image.yml@shared-build-and-publish-docker-image-v6
with:
docker_image_name: jore4-postgres-mapmatching
build_arm64_image: true
Expand All @@ -28,7 +31,7 @@ jobs:
permissions:
id-token: write
contents: read
uses: HSLdevcom/jore4-tools/.github/workflows/shared-build-and-publish-docker-image.yml@shared-build-and-publish-docker-image-v1
uses: HSLdevcom/jore4-tools/.github/workflows/shared-build-and-publish-docker-image.yml@shared-build-and-publish-docker-image-v6
with:
docker_image_name: jore4-postgres-azuredbmock
build_arm64_image: true
Expand Down Expand Up @@ -134,7 +137,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Start up postgresql docker container
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/check-renovatebot-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ name: Check renovatebot config
on:
pull_request:

permissions:
contents: read

jobs:
validate:
name: Validate renovatebot config
uses: HSLdevcom/jore4-tools/.github/workflows/shared-check-renovatebot-config.yml@shared-check-renovatebot-config-v1
uses: HSLdevcom/jore4-tools/.github/workflows/shared-check-renovatebot-config.yml@shared-check-renovatebot-config-v2
with:
config_file_path: .github/renovate.json5
5 changes: 4 additions & 1 deletion .github/workflows/test-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ on:
pull_request:
branches: [main, releases/**]

permissions:
contents: read

jobs:
test-docker-compose:
name: verify docker-compose setup
runs-on: ubuntu-24.04

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Start postgres databases in docker-compose
run: docker compose up -d
Expand Down