Skip to content

Commit

Permalink
Merge branch 'main' into fcStreamingfix
Browse files Browse the repository at this point in the history
  • Loading branch information
m-nagarajan committed Aug 23, 2023
2 parents ca7063c + 5d43de4 commit 8fd42d1
Show file tree
Hide file tree
Showing 163 changed files with 5,609 additions and 1,684 deletions.
9 changes: 4 additions & 5 deletions .github/rawWorkflows/gh-ci-alpini-parametrized-flow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
jdk: [11]
runs-on: ${{ matrix.os }}
jdk: [11, 17]
runs-on: ubuntu-latest
timeout-minutes: $TimeOut
outputs:
alpini_touched: ${{ steps.check_alpini_files_changed.outputs.alpini }}
Expand Down Expand Up @@ -60,11 +59,11 @@
mkdir ${{ github.job }}-artifacts
find . -path "**/build/reports/*" -or -path "**/build/test-results/*" > artifacts.list
rsync -R --files-from=artifacts.list . ${{ github.job }}-artifacts
tar -zcvf ${{ github.job }}-artifacts.tar.gz ${{ github.job }}-artifacts
tar -zcvf ${{ github.job }}-jdk${{ matrix.jdk }}-logs.tar.gz ${{ github.job }}-artifacts
- name: Upload Build Artifacts
if: steps.check_alpini_files_changed.outputs.alpini == 'true' && (success() || failure())
uses: actions/upload-artifact@v3
with:
name: ${{ github.job }}
path: ${{ github.job }}-artifacts.tar.gz
path: ${{ github.job }}-jdk${{ matrix.jdk }}-logs.tar.gz
retention-days: 30
9 changes: 4 additions & 5 deletions .github/rawWorkflows/gh-ci-parameterized-flow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
jdk: [11]
runs-on: ${{ matrix.os }}
jdk: [11, 17]
runs-on: ubuntu-latest
needs: $Dependency
if: $Conditional
timeout-minutes: $TimeOut
Expand Down Expand Up @@ -34,11 +33,11 @@
mkdir ${{ github.job }}-artifacts
find . -path "**/build/reports/*" -or -path "**/build/test-results/*" > artifacts.list
rsync -R --files-from=artifacts.list . ${{ github.job }}-artifacts
tar -zcvf ${{ github.job }}-artifacts.tar.gz ${{ github.job }}-artifacts
tar -zcvf ${{ github.job }}-jdk${{ matrix.jdk }}-logs.tar.gz ${{ github.job }}-artifacts
- name: Upload Build Artifacts
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: ${{ github.job }}
path: ${{ github.job }}-artifacts.tar.gz
path: ${{ github.job }}-jdk${{ matrix.jdk }}-logs.tar.gz
retention-days: 30
4 changes: 1 addition & 3 deletions .github/rawWorkflows/gh-ci-validate-gradle-wrapper.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
$FlowName:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
timeout-minutes: $TimeOut
steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/gh-ci-pulsar-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
jdk: [11]
runs-on: ${{ matrix.os }}
jdk: [11, 17]
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- uses: actions/checkout@v3
Expand Down
Loading

0 comments on commit 8fd42d1

Please sign in to comment.