2022-02-24 02:02:59 +08:00
|
|
|
# no-op
|
2022-01-04 07:04:41 +08:00
|
|
|
name: Integration Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request: { }
|
|
|
|
push:
|
|
|
|
branches: [ main, develop ]
|
|
|
|
|
|
|
|
# Enrich gradle.properties for CI/CD
|
|
|
|
env:
|
|
|
|
CI_GRADLE_ARG_PROPERTIES: >
|
|
|
|
-Porg.gradle.jvmargs=-Xmx2g
|
|
|
|
-Porg.gradle.parallel=false
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Build Android Tests [Matrix SDK]
|
|
|
|
build-android-test-matrix-sdk:
|
|
|
|
name: Matrix SDK - Build Android Tests
|
|
|
|
runs-on: ubuntu-latest
|
2022-02-24 02:01:22 +08:00
|
|
|
concurrency:
|
|
|
|
# When running on develop, use the sha to allow all runs of this workflow to run concurrently.
|
|
|
|
# Otherwise only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
|
|
|
group: ${{ github.ref == 'refs/heads/develop' && format('test-matrix-sdk-develop-{0}', github.sha) || format('test-matrix-sdk-{0}', github.ref) }}
|
|
|
|
cancel-in-progress: true
|
2022-01-04 07:04:41 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.gradle/caches
|
|
|
|
~/.gradle/wrapper
|
|
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-gradle-
|
|
|
|
- name: Build Android Tests for matrix-sdk-android
|
|
|
|
run: ./gradlew clean matrix-sdk-android:assembleAndroidTest $CI_GRADLE_ARG_PROPERTIES --stacktrace -PallWarningsAsErrors=false
|
|
|
|
|
|
|
|
# Build Android Tests [Matrix APP]
|
|
|
|
build-android-test-app:
|
|
|
|
name: App - Build Android Tests
|
|
|
|
runs-on: ubuntu-latest
|
2022-02-24 02:01:22 +08:00
|
|
|
concurrency:
|
|
|
|
# When running on develop, use the sha to allow all runs of this workflow to run concurrently.
|
|
|
|
# Otherwise only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
|
|
|
group: ${{ github.ref == 'refs/heads/develop' && format('test-app-develop-{0}', github.sha) || format('test-app-{0}', github.ref) }}
|
|
|
|
cancel-in-progress: true
|
2022-01-04 07:04:41 +08:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.gradle/caches
|
|
|
|
~/.gradle/wrapper
|
|
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-gradle-
|
|
|
|
- name: Build Android Tests for vector
|
|
|
|
run: ./gradlew clean vector:assembleAndroidTest $CI_GRADLE_ARG_PROPERTIES --stacktrace -PallWarningsAsErrors=false
|
|
|
|
|
|
|
|
# Run Android Tests
|
|
|
|
integration-tests:
|
|
|
|
name: Matrix SDK - Running Integration Tests
|
|
|
|
runs-on: ubuntu-latest
|
2022-02-24 02:01:22 +08:00
|
|
|
concurrency:
|
|
|
|
# When running on develop, use the sha to allow all runs of this workflow to run concurrently.
|
|
|
|
# Otherwise only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
|
|
|
group: ${{ github.ref == 'refs/heads/develop' && format('integration-tests-develop-{0}', github.sha) || format('integration-tests-{0}', github.ref) }}
|
|
|
|
cancel-in-progress: true
|
2022-01-04 07:04:41 +08:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
api-level: [ 28 ]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: gradle/wrapper-validation-action@v1
|
|
|
|
- uses: actions/setup-java@v2
|
|
|
|
with:
|
|
|
|
distribution: 'adopt'
|
|
|
|
java-version: 11
|
|
|
|
- name: Set up Python 3.8
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.8
|
|
|
|
- name: Cache pip
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
|
|
|
key: ${{ runner.os }}-pip
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pip-
|
|
|
|
${{ runner.os }}-
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.gradle/caches
|
|
|
|
~/.gradle/wrapper
|
|
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-gradle-
|
|
|
|
- name: Start synapse server
|
|
|
|
run: |
|
|
|
|
python3 -m venv .synapse
|
|
|
|
source .synapse/bin/activate
|
|
|
|
pip install synapse matrix-synapse
|
|
|
|
curl https://raw.githubusercontent.com/matrix-org/synapse/develop/demo/start.sh -o start.sh
|
|
|
|
chmod 777 start.sh
|
|
|
|
./start.sh --no-rate-limit
|
|
|
|
# package: org.matrix.android.sdk.session
|
|
|
|
- name: Run integration tests for Matrix SDK [org.matrix.android.sdk.session] API[${{ matrix.api-level }}]
|
|
|
|
continue-on-error: true
|
|
|
|
uses: reactivecircus/android-emulator-runner@v2
|
|
|
|
with:
|
|
|
|
api-level: ${{ matrix.api-level }}
|
|
|
|
arch: x86
|
|
|
|
profile: Nexus 5X
|
2022-01-07 19:59:43 +08:00
|
|
|
force-avd-creation: false
|
2022-01-04 07:04:41 +08:00
|
|
|
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
|
|
|
|
emulator-build: 7425822
|
2022-01-07 17:03:54 +08:00
|
|
|
script: ./gradlew $CI_GRADLE_ARG_PROPERTIES -Pandroid.testInstrumentationRunnerArguments.package='org.matrix.android.sdk.session' matrix-sdk-android:connectedDebugAndroidTest
|
2022-01-04 07:04:41 +08:00
|
|
|
- name: Read Results [org.matrix.android.sdk.session]
|
|
|
|
continue-on-error: true
|
|
|
|
id: get-comment-body-session
|
|
|
|
run: |
|
|
|
|
body="$(cat ./matrix-sdk-android/build/outputs/androidTest-results/connected/*.xml | grep "<testsuite" | sed "s@.*tests=\(.*\)time=.*@\1@")"
|
|
|
|
echo "::set-output name=session::passed=$body"
|
|
|
|
# package: org.matrix.android.sdk.account
|
|
|
|
- name: Run integration tests for Matrix SDK [org.matrix.android.sdk.account] API[${{ matrix.api-level }}]
|
|
|
|
continue-on-error: true
|
|
|
|
uses: reactivecircus/android-emulator-runner@v2
|
|
|
|
with:
|
|
|
|
api-level: ${{ matrix.api-level }}
|
|
|
|
arch: x86
|
|
|
|
profile: Nexus 5X
|
2022-01-07 19:59:43 +08:00
|
|
|
force-avd-creation: false
|
2022-01-04 07:04:41 +08:00
|
|
|
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
|
|
|
|
emulator-build: 7425822
|
2022-01-07 17:03:54 +08:00
|
|
|
script: ./gradlew $CI_GRADLE_ARG_PROPERTIES -Pandroid.testInstrumentationRunnerArguments.package='org.matrix.android.sdk.account' matrix-sdk-android:connectedDebugAndroidTest
|
2022-01-04 07:04:41 +08:00
|
|
|
- name: Read Results [org.matrix.android.sdk.account]
|
|
|
|
continue-on-error: true
|
|
|
|
id: get-comment-body-account
|
|
|
|
run: |
|
|
|
|
body="$(cat ./matrix-sdk-android/build/outputs/androidTest-results/connected/*.xml | grep "<testsuite" | sed "s@.*tests=\(.*\)time=.*@\1@")"
|
|
|
|
echo "::set-output name=account::passed=$body"
|
|
|
|
# package: org.matrix.android.sdk.internal
|
|
|
|
- name: Run integration tests for Matrix SDK [org.matrix.android.sdk.internal] API[${{ matrix.api-level }}]
|
|
|
|
continue-on-error: true
|
|
|
|
uses: reactivecircus/android-emulator-runner@v2
|
|
|
|
with:
|
|
|
|
api-level: ${{ matrix.api-level }}
|
|
|
|
arch: x86
|
|
|
|
profile: Nexus 5X
|
2022-01-07 19:59:43 +08:00
|
|
|
force-avd-creation: false
|
2022-01-04 07:04:41 +08:00
|
|
|
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
|
|
|
|
emulator-build: 7425822
|
2022-01-07 17:03:54 +08:00
|
|
|
script: ./gradlew $CI_GRADLE_ARG_PROPERTIES -Pandroid.testInstrumentationRunnerArguments.package='org.matrix.android.sdk.internal' matrix-sdk-android:connectedDebugAndroidTest
|
2022-01-04 07:04:41 +08:00
|
|
|
- name: Read Results [org.matrix.android.sdk.internal]
|
|
|
|
continue-on-error: true
|
|
|
|
id: get-comment-body-internal
|
|
|
|
run: |
|
|
|
|
body="$(cat ./matrix-sdk-android/build/outputs/androidTest-results/connected/*.xml | grep "<testsuite" | sed "s@.*tests=\(.*\)time=.*@\1@")"
|
|
|
|
echo "::set-output name=internal::passed=$body"
|
|
|
|
# package: org.matrix.android.sdk.ordering
|
|
|
|
- name: Run integration tests for Matrix SDK [org.matrix.android.sdk.ordering] API[${{ matrix.api-level }}]
|
|
|
|
continue-on-error: true
|
|
|
|
uses: reactivecircus/android-emulator-runner@v2
|
|
|
|
with:
|
|
|
|
api-level: ${{ matrix.api-level }}
|
|
|
|
arch: x86
|
|
|
|
profile: Nexus 5X
|
2022-01-07 19:59:43 +08:00
|
|
|
force-avd-creation: false
|
2022-01-04 07:04:41 +08:00
|
|
|
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
|
|
|
|
emulator-build: 7425822
|
2022-01-07 17:03:54 +08:00
|
|
|
script: ./gradlew $CI_GRADLE_ARG_PROPERTIES -Pandroid.testInstrumentationRunnerArguments.package='org.matrix.android.sdk.ordering' matrix-sdk-android:connectedDebugAndroidTest
|
2022-01-04 07:04:41 +08:00
|
|
|
- name: Read Results [org.matrix.android.sdk.ordering]
|
|
|
|
continue-on-error: true
|
|
|
|
id: get-comment-body-ordering
|
|
|
|
run: |
|
|
|
|
body="$(cat ./matrix-sdk-android/build/outputs/androidTest-results/connected/*.xml | grep "<testsuite" | sed "s@.*tests=\(.*\)time=.*@\1@")"
|
|
|
|
echo "::set-output name=ordering::passed=$body"
|
|
|
|
# package: class PermalinkParserTest
|
|
|
|
- name: Run integration tests for Matrix SDK class [org.matrix.android.sdk.PermalinkParserTest] API[${{ matrix.api-level }}]
|
|
|
|
continue-on-error: true
|
|
|
|
uses: reactivecircus/android-emulator-runner@v2
|
|
|
|
with:
|
|
|
|
api-level: ${{ matrix.api-level }}
|
|
|
|
arch: x86
|
|
|
|
profile: Nexus 5X
|
2022-01-07 19:59:43 +08:00
|
|
|
force-avd-creation: false
|
2022-01-04 07:04:41 +08:00
|
|
|
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
|
|
|
|
emulator-build: 7425822
|
2022-01-07 17:03:54 +08:00
|
|
|
script: ./gradlew $CI_GRADLE_ARG_PROPERTIES -Pandroid.testInstrumentationRunnerArguments.class='org.matrix.android.sdk.PermalinkParserTest' matrix-sdk-android:connectedDebugAndroidTest
|
2022-01-04 07:04:41 +08:00
|
|
|
- name: Read Results [org.matrix.android.sd.PermalinkParserTest]
|
|
|
|
continue-on-error: true
|
|
|
|
id: get-comment-body-permalink
|
|
|
|
run: |
|
|
|
|
body="$(cat ./matrix-sdk-android/build/outputs/androidTest-results/connected/*.xml | grep "<testsuite" | sed "s@.*tests=\(.*\)time=.*@\1@")"
|
|
|
|
echo "::set-output name=permalink::passed=$body"
|
|
|
|
- name: Find Comment
|
2022-02-01 23:37:05 +08:00
|
|
|
if: github.event_name == 'pull_request'
|
2022-01-04 07:04:41 +08:00
|
|
|
uses: peter-evans/find-comment@v1
|
|
|
|
id: fc
|
|
|
|
with:
|
|
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
|
|
comment-author: 'github-actions[bot]'
|
|
|
|
body-includes: Integration Tests Results
|
|
|
|
- name: Publish results to PR
|
2022-02-01 23:37:05 +08:00
|
|
|
if: github.event_name == 'pull_request'
|
2022-01-04 07:04:41 +08:00
|
|
|
uses: peter-evans/create-or-update-comment@v1
|
|
|
|
with:
|
|
|
|
comment-id: ${{ steps.fc.outputs.comment-id }}
|
|
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
|
|
body: |
|
|
|
|
### Matrix SDK
|
|
|
|
## Integration Tests Results:
|
|
|
|
- `[org.matrix.android.sdk.session]`<br>${{ steps.get-comment-body-session.outputs.session }}
|
|
|
|
- `[org.matrix.android.sdk.account]`<br>${{ steps.get-comment-body-account.outputs.account }}
|
2022-01-06 06:38:05 +08:00
|
|
|
- `[org.matrix.android.sdk.internal]`<br>${{ steps.get-comment-body-internal.outputs.internal }}
|
2022-01-04 07:04:41 +08:00
|
|
|
- `[org.matrix.android.sdk.ordering]`<br>${{ steps.get-comment-body-ordering.outputs.ordering }}
|
|
|
|
- `[org.matrix.android.sdk.PermalinkParserTest]`<br>${{ steps.get-comment-body-permalink.outputs.permalink }}
|
|
|
|
edit-mode: replace
|
|
|
|
## Useful commands
|
|
|
|
# script: ./integration_tests_script.sh
|
|
|
|
# script: ./gradlew $CI_GRADLE_ARG_PROPERTIES -Pandroid.testInstrumentationRunnerArguments.package='org.matrix.android.sdk.session' matrix-sdk-android:connectedDebugAndroidTest --info
|
|
|
|
# script: ./gradlew $CI_GRADLE_ARG_PROPERTIES matrix-sdk-android:connectedAndroidTest --info
|
|
|
|
# script: ./gradlew $CI_GRADLE_ARG_PROPERTIES -PallWarningsAsErrors=false connectedCheck --stacktrace
|
2022-01-07 19:59:43 +08:00
|
|
|
# script: ./gradlew $CI_GRADLE_ARG_PROPERTIES -Pandroid.testInstrumentationRunnerArguments.class=org.matrix.android.sdk.session.room.timeline.ChunkEntityTest matrix-sdk-android:connectedAndroidTest --info
|