Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve workflow #1477

Merged
merged 5 commits into from
Nov 28, 2023
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
6 changes: 6 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ jobs:
with:
image: ${{ env.IMAGE_ORG }}/${{ env.IMAGE_NAME }}
oci: true
labels: |
quay.expires-after=1w
tags: ${{ env.IMAGE_TAG_LATEST }} ${{ env.IMAGE_TAG_PRE }} ${{ github.sha }}
dockerfiles: |
./docker/Dockerfile-ubi
Expand All @@ -141,6 +143,8 @@ jobs:
image: ${{ env.IMAGE_ORG }}/${{ env.IMAGE_NAME }}
tags: ${{ env.IMAGE_TAG_PRE }}-GDB
oci: true
labels: |
quay.expires-after=1w
dockerfiles: |
./docker/Dockerfile-gdb
build-args: |
Expand Down Expand Up @@ -172,6 +176,8 @@ jobs:
image: ${{ env.IMAGE_ORG }}/${{ env.IMAGE_NAME }}
tags: ${{ env.IMAGE_TAG_PRE }}-${{ env.IMAGE_TAG_DEBUG }}
oci: true
labels: |
quay.expires-after=1w
dockerfiles: |
./docker/Dockerfile-debug

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ env:
IMAGE_NAME: localhost:5000/orion-ld-test:latest
IGNORE_TEST: '0706_direct_https_notifications/direct_https_notifications.test 0706_direct_https_notifications/direct_https_notifications_no_accept_selfsigned.test 2015_notification_templates/notification_templates_cache_refresh.test 0000_ipv6_support/ipv4_ipv6_both.test 0740_crash_with_json_object_for_attributes/json_object_format.test 0000_ngsild/ngsild_datasetId_entity_relationship_creation.test 0000_ngsild/ngsild_entities_get_by_type.test 0000_ngsild/ngsild_entity_creation_strange_chars_in_attr_names.test 0000_ngsild/ngsild_entity_creation_with_japanese_chars.test 0000_ngsild/ngsild_issue_0737.test 0000_ngsild/ngsild_query_entities_geo_error.test 2871_fwd_update_ok_but_not_found_response/fwd_update_ok_but_not_found_response.test'

## Cancel running tests, get faster test-results for the latest commit
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build-test-image:
runs-on: ubuntu-latest
Expand Down
Loading