Skip to content

Commit

Permalink
Upload Gradle reports (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lipen authored Jan 31, 2025
1 parent 3b6a01d commit 5ecce14
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ jobs:
run: |
./gradlew :usvm-core:check :usvm-dataflow:check :usvm-util:check :usvm-sample-language:check
- name: Upload Gradle reports
if: (!cancelled())
uses: actions/upload-artifact@v4
with:
name: gradle-reports-core
path: '**/build/reports/'
retention-days: 1

ci-jvm:
runs-on: ubuntu-24.04
steps:
Expand All @@ -49,6 +57,14 @@ jobs:
- name: Run JVM tests
run: ./gradlew :usvm-jvm:check :usvm-jvm-dataflow:check :usvm-jvm-instrumentation:check

- name: Upload Gradle reports
if: (!cancelled())
uses: actions/upload-artifact@v4
with:
name: gradle-reports-jvm
path: '**/build/reports/'
retention-days: 1

ci-python:
runs-on: ubuntu-24.04
steps:
Expand Down Expand Up @@ -77,6 +93,14 @@ jobs:
- name: Run Python tests
run: ./gradlew -PcpythonActivated=true :usvm-python:check

- name: Upload Gradle reports
if: (!cancelled())
uses: actions/upload-artifact@v4
with:
name: gradle-reports-python
path: '**/build/reports/'
retention-days: 1

ci-ts:
runs-on: ubuntu-24.04
steps:
Expand Down Expand Up @@ -127,6 +151,14 @@ jobs:
- name: Run TS tests
run: ./gradlew :usvm-ts:check :usvm-ts-dataflow:check

- name: Upload Gradle reports
if: (!cancelled())
uses: actions/upload-artifact@v4
with:
name: gradle-reports-ts
path: '**/build/reports/'
retention-days: 1

lint:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 5ecce14

Please sign in to comment.