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

Update community_build_a #16427

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ jobs:
github.event_name == 'pull_request'
&& !contains(github.event.pull_request.body, '[skip ci]')
&& !contains(github.event.pull_request.body, '[skip community_build]')
&& !contains(github.event.pull_request.body, '[skip community_build_a]')
)
|| (
github.event_name == 'workflow_dispatch'
Expand Down Expand Up @@ -303,6 +304,7 @@ jobs:
github.event_name == 'pull_request'
&& !contains(github.event.pull_request.body, '[skip ci]')
&& !contains(github.event.pull_request.body, '[skip community_build]')
&& !contains(github.event.pull_request.body, '[skip community_build_b]')
)
|| (
github.event_name == 'workflow_dispatch'
Expand Down Expand Up @@ -350,6 +352,7 @@ jobs:
github.event_name == 'pull_request'
&& !contains(github.event.pull_request.body, '[skip ci]')
&& !contains(github.event.pull_request.body, '[skip community_build]')
&& !contains(github.event.pull_request.body, '[skip community_build_c]')
)
|| (
github.event_name == 'workflow_dispatch'
Expand Down
2 changes: 1 addition & 1 deletion community-build/community-projects/cats
Submodule cats updated 156 files
2 changes: 1 addition & 1 deletion community-build/community-projects/cats-effect-3
Submodule cats-effect-3 updated 258 files
2 changes: 1 addition & 1 deletion community-build/community-projects/http4s
Submodule http4s updated 198 files
2 changes: 1 addition & 1 deletion community-build/community-projects/munit
Submodule munit updated 130 files
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,8 @@ object projects:
sbtTestCommand = "ciJVM",
sbtPublishCommand = "publishLocal",
sbtDocCommand = ";coreJVM/doc ;lawsJVM/doc ;kernelJVM/doc",
dependencies = List(cats, coop, disciplineSpecs2, scalacheck)
dependencies = List(cats, coop, disciplineSpecs2, scalacheck),
scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Ysafe-init")
)

lazy val scalaParallelCollections = SbtCommunityProject(
Expand Down