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

Setup Safari ci #19

Draft
wants to merge 27 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
74c214f
Setup Safari ci
armanbilge Sep 7, 2021
31bab00
Don't run Safari on ubuntu
armanbilge Sep 7, 2021
779f485
Cache Safari JSEnv
armanbilge Sep 7, 2021
35e7b42
Revert "Cache Safari JSEnv"
armanbilge Sep 12, 2021
e0ed1b7
Enable Test / parallelExecution := false
armanbilge Sep 12, 2021
741b369
Merge branch 'main' into feature/safari
armanbilge Sep 12, 2021
94258c3
Merge branch 'main' into feature/safari
armanbilge Sep 12, 2021
534e8ec
Try adding a killall
armanbilge Sep 12, 2021
196f429
Use correct syntax
armanbilge Sep 12, 2021
0462360
Cache Safari JSEnv
armanbilge Sep 7, 2021
d4f7279
Test only core on Safari for now
armanbilge Sep 12, 2021
419e29e
Enable keepAlive
armanbilge Sep 12, 2021
18aa42b
Merge remote-tracking branch 'upstream/main' into feature/safari
armanbilge Apr 28, 2022
1cc8fce
Don't do weird stuff
armanbilge Apr 28, 2022
0db7bf6
Simplify build config
armanbilge Apr 28, 2022
1eb424a
Revert "Simplify build config"
armanbilge Apr 28, 2022
367775d
Remove keepalive for Safari
armanbilge Apr 28, 2022
65913cc
Temporarily disable webworkers project
armanbilge Apr 28, 2022
035370f
Revert "Temporarily disable webworkers project"
armanbilge Apr 28, 2022
9d96432
Try try again
armanbilge Apr 28, 2022
6ea98e3
Poke ci
armanbilge Apr 28, 2022
a899b2f
Disable parallel exec
armanbilge Apr 28, 2022
03919b3
One more grand idea
armanbilge Apr 28, 2022
29738da
no idea
armanbilge Apr 28, 2022
2a17a9e
Try to limit threads
armanbilge Apr 28, 2022
d370996
Prefix JVM opts with -J
armanbilge Apr 28, 2022
918654f
Regenerate workflow
armanbilge Apr 28, 2022
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
no idea
armanbilge committed Apr 28, 2022
commit 29738da2b8417486803b8c9646aa90af0a387b92
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -141,7 +141,8 @@ def commonSettings(disableSafari: Boolean = false) = Seq(
defaultFactory.registerDriverProvider(provider)
}
new SeleniumJSEnv(options, SeleniumJSEnv.Config().withDriverFactory(factory))
case Safari if !disableSafari =>
case Safari if !disableSafari =>
println("DEBUG DEBUG DEBUG DEBUG")
val options = new SafariOptions()
new SeleniumJSEnv(options, SeleniumJSEnv.Config())
case _ => old