Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check CI device tags #5448

Draft
wants to merge 46 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
b8983f5
Initial commit
takameyer May 31, 2022
4a2bf85
Documenting guidelines for testing & refactoring accordingly (#4584)
kraenhansen Jun 1, 2022
73a495b
Test Migration: Alias tests (#4581)
takameyer Jun 2, 2022
10d9596
Add migration tests (#5285)
gagik Jan 19, 2023
7605056
Migrate set tests to integration tests (#5290)
gagik Jan 24, 2023
307de57
Move list tests to ts (#5287)
JacobOscarGunnarsson Jan 24, 2023
5bf70db
move app tests to typescript (#5297)
JacobOscarGunnarsson Jan 24, 2023
2045aef
remove mistakenly added duplicates of apps
Jan 25, 2023
9df393c
Test Migration: Results Tests (#5325)
gagik Jan 26, 2023
b5ceb44
move mixed tests to integration tests (#5256)
JacobOscarGunnarsson Jan 27, 2023
ee90b58
Move array-buffer tests to integration tests (#5255)
JacobOscarGunnarsson Jan 27, 2023
3a394f0
use correct baseurl for tests (#5337)
JacobOscarGunnarsson Jan 30, 2023
aee6eb1
migrate dictionary tests to ts (#5254)
JacobOscarGunnarsson Jan 31, 2023
d288982
move linking-objects tests to ts (#5268)
JacobOscarGunnarsson Feb 1, 2023
16d81b0
Test Migration: User Tests (#5324)
JacobOscarGunnarsson Feb 1, 2023
1d0b839
Test Migration: Queries test (#5299)
gagik Feb 2, 2023
6ce7c99
Test Migration: Notification Tests (#5347)
gagik Feb 2, 2023
e5812a0
Add a debug launcher for integration tests
takameyer Feb 9, 2023
d6061dd
Fix the mongo client tests for local baas
takameyer Feb 9, 2023
eeef08e
fix queries test, make test errors more verbose
Feb 9, 2023
1a61fa1
Remove Chrome Debugger and fix package-lock problems (#5403)
takameyer Feb 10, 2023
4712fbf
Pushed Chrome Debugger Removal with Lint errors (#5414)
takameyer Feb 10, 2023
03b8e92
Andrew/tests/fix-watch (#5412)
takameyer Feb 10, 2023
fd9b387
Remove lock files
takameyer Feb 10, 2023
0242009
Migrate object-tests to TS (#5348)
JacobOscarGunnarsson Feb 13, 2023
7a22208
test migration: open-behaviour (#5365)
JacobOscarGunnarsson Feb 13, 2023
1323710
test migration: mixed-sync-test (#5398)
JacobOscarGunnarsson Feb 13, 2023
9e1b3e7
migrate encryption tests to TS (#5362)
JacobOscarGunnarsson Feb 13, 2023
a53f352
migrate sync-based UUID, Dictionary and Set tests (#5356)
gagik Feb 13, 2023
0b0f351
migrate realm tests to TS (#5352)
JacobOscarGunnarsson Feb 13, 2023
6ffba74
migrate partition-values tests to TS (#5359)
JacobOscarGunnarsson Feb 13, 2023
b554d22
test migration: session tests (#5391)
JacobOscarGunnarsson Feb 17, 2023
850bd0c
Fix issues with migrated integration tests, add select helper method.…
JacobOscarGunnarsson Feb 17, 2023
b8d9c11
Refactored the importApp hook
kraenhansen Feb 17, 2023
c2864ac
Remove BSON as a dependency from tests
gagik Feb 15, 2023
47a0533
Fixed import app hook 🤞
kraenhansen Feb 17, 2023
a24fafb
[fast] Test
gagik Feb 17, 2023
1e3f9f8
Test one exclude
gagik Feb 17, 2023
7900688
Test.
gagik Feb 17, 2023
62db885
Use sequence
gagik Feb 17, 2023
5ca368e
Another attempt
gagik Feb 17, 2023
110dad8
[fast] another attempt
gagik Feb 17, 2023
50643aa
Test reusable
gagik Feb 17, 2023
503b142
Use different formatting
gagik Feb 17, 2023
765d972
Use actions
gagik Feb 17, 2023
d36f443
with version
gagik Feb 17, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Another attempt
  • Loading branch information
gagik committed Feb 17, 2023
commit 5ca368e1b8a931d503f5843889127dc92a59f408
11 changes: 6 additions & 5 deletions .github/workflows/pr-realm-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
fail-fast: false
matrix:
shouldBeFastRun:
shouldBeFastRun:
- ${{ contains(github.event.head_commit.message, '[fast]') }}
variant:
- { os: linux, runner: ubuntu-latest, arch: x64, artifact-path: prebuilds, test-node: true, test-electron: true, container: "ghcr.io/${{ github.repository }}/linux-x64:master" }
Expand All @@ -53,10 +53,11 @@ jobs:
- { os: ios, runner: macos-latest, arch: ios, artifact-path: react-native/ios/realm-js-ios.xcframework }
exclude:
- shouldBeFastRun: true
variant:
- { os: ios, runner: macos-latest, arch: simulator, artifact-path: react-native/ios/realm-js-ios.xcframework }
- { os: ios, runner: macos-latest, arch: catalyst, artifact-path: react-native/ios/realm-js-ios.xcframework }
- { os: ios, runner: macos-latest, arch: ios, artifact-path: react-native/ios/realm-js-ios.xcframework }
variant: { os: ios, runner: macos-latest, arch: simulator, artifact-path: react-native/ios/realm-js-ios.xcframework }
- shouldBeFastRun: true
variant: { os: ios, runner: macos-latest, arch: ios, artifact-path: react-native/ios/realm-js-ios.xcframework }
- shouldBeFastRun: true
variant: { os: ios, runner: macos-latest, arch: catalyst, artifact-path: react-native/ios/realm-js-ios.xcframework }
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down