Skip to content

fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.9 #255

fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.9

fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.9 #255

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "develop", "main" ]
pull_request:
types: [ opened, synchronize ]
jobs:
build:
name: Build and Test
# if you fork this repo, you should change this to ubuntu-latest
# you should also disable ipv6 tests, and the android tests
# (the self-hosted tests have ipv6 on the host and a phone attached to the runner)
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: set up JDK
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build and Publish the Common Library to the local Maven repository
run: ./gradlew :icmp-common:publishToMavenLocal
- name: Build and Publish the Android and Linux Libraries to the local Maven repository
run: ./gradlew :icmp-android:publishToMavenLocal :icmp-linux:publishToMavenLocal
- name: Build with Gradle
run: ./gradlew assemble # we don't use build because that will run the tests, we want that separate
- name: JVM Unit tests
run: ./gradlew check
- name: Android Instrumented tests # disable if you don't have a phone attached to the runner
run: ./gradlew connectedCheck
- name: Upload ICMP Common Unit Tests Report to CodeCov
# https://github.com/codecov/codecov-action
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: commonunittests
files: ./icmp-common/build/reports/jacoco/test/jacocoTestReport.xml
- name: Upload ICMP Linux Unit Tests Report to CodeCov
# https://github.com/codecov/codecov-action
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: linuxunittests
files: ./icmp-linux/build/reports/jacoco/test/jacocoTestReport.xml
- name: Upload Instrumented Tests Report to CodeCov
# https://github.com/codecov/codecov-action
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: instrumentedtests
files: ./icmp-android/build/reports/coverage/androidTest/debug/connected/report.xml