Extend GNU toolchain language standard options for MBS #1692
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
name: Code Cleanliness Checks | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Run Check Code Cleanliness with Docker | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: quay.io/eclipse-cdt/cdt-infra-github@sha256:3d745b7b84e3f9f9492cc1d280ea3b44028a92c7e9748d1ea8771fed211b5dc4 | |
options: -v ${{ github.workspace }}:/work | |
run: | | |
set -x | |
cd /work | |
./releng/scripts/check_code_cleanliness_only.sh | |
./releng/scripts/check_bundle_versions.sh | |
./releng/scripts/check_bundle_versions_report.sh | |
- name: Upload Logs | |
uses: actions/upload-artifact@v3 | |
if: success() || failure() | |
with: | |
name: Code Cleanliness Detailed Logs | |
path: "*.log" |