Skip to content

Commit

Permalink
Merge branch 'public-release/v2.1.0' into zowe-release/v2.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Uladzislau <[email protected]>
  • Loading branch information
KUGDev committed Jan 27, 2025
2 parents abb4b08 + 0562c09 commit 2d9acd1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
product: ["IC-231","IC-233","IC-242","IC-243"]
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:

test_and_sonar:
needs: [build]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
product: ["IC-231","IC-233","IC-242","IC-243"]
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
- name: Publish tests result to artifacts
uses: actions/upload-artifact@v4
with:
name: tests-report-${{ matrix.product }}
name: tests-summary-success-report-${{ matrix.product }}
path: ${{ github.workspace }}/build/reports/tests

- name: Publish code coverage report to artifacts
Expand All @@ -164,10 +164,17 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}
PRODUCT_NAME: ${{ matrix.product }}

- name: Save test failure report
if: failure()
uses: actions/upload-artifact@v4
with:
name: tests-summary-failure-report-${{ matrix.product }}
path: ${{ github.workspace }}/build/reports/tests/test

verify:
if: ${{ contains(github.ref, 'refs/heads/release/') || contains(github.ref, 'refs/heads/main') }}
needs: [build]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
product: ["IC-231","IC-233","IC-242","IC-243"]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
changelog-and-preparations:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
contents: write
pull-requests: write
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
release:
needs: [changelog-and-preparations]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
contents: write
strategy:
Expand Down

0 comments on commit 2d9acd1

Please sign in to comment.