Skip to content

Add github actions for UI tests #21

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

Open
wants to merge 33 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
124a3d0
Add yml for UI tests
corrado4eyes Jun 30, 2023
7d92fb0
Fix env variable usage
corrado4eyes Jun 30, 2023
615a45a
Use java 17
corrado4eyes Jun 30, 2023
b7f5a74
Correct usage of env variable
corrado4eyes Jun 30, 2023
fae598d
Wrap variable inside string
corrado4eyes Jun 30, 2023
da79ec8
Add common steps
corrado4eyes Jun 30, 2023
b502a9c
Remove common steps
corrado4eyes Jun 30, 2023
1903434
Remove `needs`
corrado4eyes Jun 30, 2023
5b3e97e
Inline ios script
corrado4eyes Jun 30, 2023
1045afe
Add android emulator runner
corrado4eyes Jun 30, 2023
bbb5aa3
Change iOS device
corrado4eyes Jun 30, 2023
1aa8c21
Add android api level
corrado4eyes Jun 30, 2023
391e9e7
Update emulator step
corrado4eyes Jun 30, 2023
0c66687
Add `matrix` for api-level
corrado4eyes Jun 30, 2023
0fe3653
Compile modules
corrado4eyes Jun 30, 2023
491531f
Add cocoapods-action step
corrado4eyes Jun 30, 2023
080554f
Add steps to configure and build ios project
corrado4eyes Jun 30, 2023
20a94f1
Add transitiveExport flag
corrado4eyes Jun 30, 2023
4140935
Change submodule HEAD
corrado4eyes Jun 30, 2023
58e34da
Forcing deployment target
corrado4eyes Jun 30, 2023
2031b4a
Trigger CI
corrado4eyes Jun 30, 2023
4c987f9
Add podImport task before running pod install and tests
corrado4eyes Jun 30, 2023
31c7693
Add prettifier
corrado4eyes Jul 1, 2023
81684b8
Remove ununsed configuration
corrado4eyes Jul 1, 2023
9f1bd9a
Remove prettiefier
corrado4eyes Jul 1, 2023
e45c3ac
Add task to upload test result artifacts
corrado4eyes Jul 1, 2023
f40a109
Add `always` policy to run step even if previous step failed
corrado4eyes Jul 1, 2023
94463b4
Fix path
corrado4eyes Jul 1, 2023
5274ef8
Update artefacts folder
corrado4eyes Jul 3, 2023
86a41e7
Add gradle task to update .def file
corrado4eyes Sep 8, 2023
328d6f7
Add Throws annotation to the wrappers
corrado4eyes Sep 8, 2023
4686084
Update feature file so that tests fails
corrado4eyes Sep 8, 2023
741ea66
Add try/catch to wrapper methods
corrado4eyes Sep 8, 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
Forcing deployment target
  • Loading branch information
corrado4eyes committed Jun 30, 2023
commit 58e34daf96f7f4f2f167c2725b02fe8b7946fdc0
8 changes: 8 additions & 0 deletions ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,11 @@ target 'CucumberTests' do
platform :ios, '14.1'
pod 'Cucumberish'
end

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = Gem::Version.new('9.0')
end
end
end