Merge pull request #597 from bci-oss/artifacts-single-level-usage-as-… #12
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
####################################################################### | |
# Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH | |
# | |
# See the NOTICE file(s) distributed with this work for additional | |
# information regarding copyright ownership. | |
# | |
# This work is made available under the terms of the | |
# Creative Commons Attribution 4.0 International (CC-BY-4.0) license, | |
# which is available at | |
# https://creativecommons.org/licenses/by/4.0/legalcode. | |
# | |
# SPDX-License-Identifier: CC-BY-4.0 | |
####################################################################### | |
name: 0 Governance | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
jobs: | |
synchronize-models: | |
name: 00 Determine Target Environment | |
runs-on: ubuntu-latest | |
outputs: | |
ADDED: ${{ steps.changes.outputs.added }} | |
MODIFIED: ${{ steps.changes.outputs.modified }} | |
REMOVED: ${{ steps.changes.outputs.removed }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Check Changes | |
id: changes | |
uses: Ana06/[email protected] | |
with: | |
# Format of the steps output context. | |
# Can be 'space-delimited', 'csv', or 'json'. | |
# Default: 'space-delimited' | |
format: 'json' | |
- name: validate changes from push | |
if: github.event.pusher | |
uses: ./.github/actions/validate | |
with: | |
ADDED: ${{ steps.changes.outputs.added }} | |
MODIFIED: ${{ steps.changes.outputs.modified }} | |
REMOVED: ${{ steps.changes.outputs.removed }} | |
IS_MAIN: true | |
- name: validate changes from PR | |
if: github.event.pull_request | |
uses: ./.github/actions/validate | |
with: | |
ADDED: ${{ steps.changes.outputs.added }} | |
MODIFIED: ${{ steps.changes.outputs.modified }} | |
- name: Archive | |
uses: actions/upload-artifact@v3 | |
with: | |
name: output | |
path: toArchive | |
validate-model-proposal: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request | |
name: 01 Validate new semantic model | |
needs: synchronize-models | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Install Node dependencies | |
working-directory: ./.github/actions/model-validation | |
run: npm install | |
- name: Validate semantic models | |
id: model_validation | |
uses: ./.github/actions/model-validation | |
with: | |
pr_number: ${{ github.event.number }} | |
bamm_version: 2.5.1 | |
added: ${{needs.synchronize-models.outputs.ADDED}} | |
modified: ${{needs.synchronize-models.outputs.MODIFIED}} | |
- name: Archive | |
uses: actions/upload-artifact@v3 | |
with: | |
name: validation-output | |
path: output |