forked from matrix-org/matrix-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/nodefy_0.23.15' into release/release_0_23_15
* release/nodefy_0.23.15: (175 commits) finish version++ version++ Stop using the room ID from the space child state. finish version++ version++ MXBeaconAggregations: Add debug log when MXBeaconInfoSummary associated to a stopped beacon info is not found. Implement new space selector bottom sheet (matrix-org#1541) Rooms without an unread badge show up in "unread" tab (matrix-org#1540) Delight edit layout experiment (matrix-org#1515) Send an empty dictionary when calling /join to be spec compliant. Empty commit to wake codecov AllWorkingTests: Disable tests that do not pass on GH actions changelog AllWorkingTests: Disabled commented tests Crypto tests CI: Expose tests report on failure and share code coverage Tests: Run working integration tests on every PR AllWorkingTests: Disable all unit tests AllWorkingTests: Disable the 22 tests that fail AllWorkingTests: Disable test classes with tests that crash Tests: Create AllWorkingTests test plan with stable tests ... # Conflicts: # MatrixSDK/Data/RoomSummaryStore/CoreData/Models/MXRoomSummaryMO.swift
- Loading branch information
Showing
176 changed files
with
4,667 additions
and
659 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
name: Crypto Tests CI | ||
|
||
on: | ||
# Triggers the workflow on any pull request and push to develop | ||
push: | ||
branches: [ develop ] | ||
pull_request: | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
crypto-tests: | ||
name: Crypto Tests with Synapse | ||
runs-on: macos-11 | ||
|
||
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('crypto-develop-{0}', github.sha) || format('crypto-{0}', github.ref) }} | ||
cancel-in-progress: true | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
# Cache for python env for Synapse | ||
- 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 }}- | ||
# Cache for Xcode env | ||
- uses: actions/cache@v2 | ||
with: | ||
path: Pods | ||
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-pods- | ||
- uses: actions/cache@v2 | ||
with: | ||
path: vendor/bundle | ||
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-gems- | ||
- name: Start synapse server | ||
uses: michaelkaye/[email protected] | ||
with: | ||
uploadLogs: true | ||
httpPort: 8080 | ||
disableRateLimiting: true | ||
|
||
- name: Bundle install | ||
run: | | ||
bundle config path vendor/bundle | ||
bundle install --jobs 4 --retry 3 | ||
# Main step | ||
- name: Crypto tests | ||
run: bundle exec fastlane test testplan:CryptoTests | ||
|
||
# Store artifacts | ||
- uses: actions/upload-artifact@v2 | ||
if: always() | ||
with: | ||
name: report.html | ||
path: build/test/report.html | ||
- uses: actions/upload-artifact@v2 | ||
if: always() | ||
with: | ||
name: report.junit | ||
path: build/test/report.junit | ||
- uses: actions/upload-artifact@v2 | ||
if: always() | ||
with: | ||
name: MatrixSDK-macOS.xcresult | ||
path: build/test/MatrixSDK-macOS.xcresult/ | ||
|
||
# Upload coverage | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
name: Integration Tests CI | ||
|
||
on: | ||
# Triggers the workflow on any pull request and push to develop | ||
push: | ||
branches: [ develop ] | ||
pull_request: | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
integration-tests: | ||
name: Integration Tests | ||
runs-on: macos-11 | ||
|
||
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('tests-integration-develop-{0}', github.sha) || format('tests-integration-{0}', github.ref) }} | ||
cancel-in-progress: true | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
# Common cache | ||
# Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job | ||
- uses: actions/cache@v2 | ||
with: | ||
path: Pods | ||
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-pods- | ||
- uses: actions/cache@v2 | ||
with: | ||
path: vendor/bundle | ||
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-gems- | ||
# Cache for python env for Synapse | ||
- 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 }}- | ||
# Set up a Synapse server | ||
- name: Start synapse server | ||
uses: michaelkaye/[email protected] | ||
with: | ||
uploadLogs: true | ||
httpPort: 8080 | ||
disableRateLimiting: true | ||
|
||
# Common setup | ||
# Note: GH actions do not support yaml anchor yet. We need to duplicate this for every job | ||
- name: Bundle install | ||
run: | | ||
bundle config path vendor/bundle | ||
bundle install --jobs 4 --retry 3 | ||
# Main step | ||
- name: Integration tests | ||
run: bundle exec fastlane test testplan:AllWorkingTests | ||
|
||
# Store artifacts | ||
- uses: actions/upload-artifact@v2 | ||
if: always() | ||
with: | ||
name: report.html | ||
path: build/test/report.html | ||
- uses: actions/upload-artifact@v2 | ||
if: always() | ||
with: | ||
name: report.junit | ||
path: build/test/report.junit | ||
- uses: actions/upload-artifact@v2 | ||
if: always() | ||
with: | ||
name: MatrixSDK-macOS.xcresult | ||
path: build/test/MatrixSDK-macOS.xcresult/ | ||
|
||
# Upload coverage | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
name: Nightly checks | ||
|
||
on: | ||
schedule: | ||
- cron: '0 3 * * 1-5' | ||
# schedule: | ||
# - cron: '0 3 * * 1-5' | ||
|
||
workflow_dispatch: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,8 @@ DerivedData | |
*.ipa | ||
*.xcuserstate | ||
*.DS_Store | ||
.vscode/ | ||
vendor/ | ||
|
||
# CocoaPods | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ source "https://rubygems.org" | |
gem "fastlane" | ||
gem "cocoapods", '~>1.11.2' | ||
gem "xcode-install" | ||
gem "slather" |
Oops, something went wrong.