-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These changes add another GitHub Actions workflow that allow the user to validate all models in one repository at once.
- Loading branch information
1 parent
5efb4e6
commit 9185dbc
Showing
3 changed files
with
113 additions
and
26 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# | ||
# Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH | ||
# | ||
# See the AUTHORS file(s) distributed with this work for additional | ||
# information regarding authorship. | ||
# | ||
# See the LICENSE file(s) distributed with this work for | ||
# additional information regarding license terms. | ||
# | ||
|
||
name: Bulk Validation | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
validate: | ||
runs-on: ubuntu-latest | ||
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 models | ||
uses: ./.github/actions/model-validation | ||
with: | ||
bamm_version: 2.1.1 | ||
bulk: true | ||
- name: Archive | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: full-validation-report | ||
path: output |