diff --git a/.github/workflows/check-levelization.yml b/.github/workflows/check-levelization.yml index 564d634025..e7afb51c54 100644 --- a/.github/workflows/check-levelization.yml +++ b/.github/workflows/check-levelization.yml @@ -19,9 +19,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - # TODO: Re-enable this step once the levelization script is faster. -# - name: Check levelization -# run: Builds/levelization/levelization.sh + - name: Check levelization + run: Builds/levelization/levelization.sh - name: Check for differences env: MESSAGE: | diff --git a/.github/workflows/generate-matrix.yml b/.github/workflows/generate-matrix.yml index 26c07050a4..6bb0c65dd9 100644 --- a/.github/workflows/generate-matrix.yml +++ b/.github/workflows/generate-matrix.yml @@ -60,11 +60,7 @@ jobs: echo "build_type=$(jq -c <<< '${{ inputs.build_type }}')" >> "$GITHUB_OUTPUT" echo "cmake_args=$(jq -c <<< '${{ inputs.cmake_args }}')" >> "$GITHUB_OUTPUT" - name: Print outputs - run: | - echo "Architecture: ${{ steps.generate.outputs.architecture }}" - echo "OS: ${{ steps.generate.outputs.os }}" - echo "Build Type: ${{ steps.generate.outputs.build_type }}" - echo "CMake Args: ${{ steps.generate.outputs.cmake_args }}" + run: echo '${{ toJSON(steps.generate.outputs) }}' outputs: architecture: ${{ steps.generate.outputs.architecture }} os: ${{ steps.generate.outputs.os }} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e155d2e248..913d9976e5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,18 +20,18 @@ defaults: shell: bash jobs: - check-clang-format: - if: github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'DraftRunCI') - uses: ./.github/workflows/check-clang-format.yml - - check-levelization: - if: github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'DraftRunCI') - uses: ./.github/workflows/check-levelization.yml +# check-clang-format: +# if: github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'DraftRunCI') +# uses: ./.github/workflows/check-clang-format.yml +# +# check-levelization: +# if: github.event.pull_request.draft == false || contains(github.event.pull_request.labels.*.name, 'DraftRunCI') +# uses: ./.github/workflows/check-levelization.yml debian: needs: - - check-clang-format - - check-levelization +# - check-clang-format +# - check-levelization uses: ./.github/workflows/build-debian.yml # rhel: