Skip to content

Commit 75f56c1

Browse files
committed
Remove leftover merge conflicts
1 parent 35d9a76 commit 75f56c1

File tree

2 files changed

+0
-65
lines changed

2 files changed

+0
-65
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -363,56 +363,6 @@ jobs:
363363
git submodule update --init --recursive --jobs 7
364364
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestC"
365365
366-
<<<<<<< HEAD
367-
- name: Show dependency tracking file
368-
if: ${{ always() }}
369-
run: cat community-build/dotty-community-build-deps || true
370-
371-
community_build_forward_compat:
372-
runs-on: [self-hosted, Linux]
373-
container:
374-
image: lampepfl/dotty:2021-03-22
375-
options: --cpu-shares 4096
376-
volumes:
377-
- ${{ github.workspace }}/../../cache/sbt:/root/.sbt
378-
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
379-
- ${{ github.workspace }}/../../cache/general:/root/.cache
380-
if: "github.event_name == 'schedule' && github.repository == 'lampepfl/dotty'
381-
|| (
382-
github.event_name == 'pull_request'
383-
&& !contains(github.event.pull_request.body, '[skip ci]')
384-
&& !contains(github.event.pull_request.body, '[skip community_build]')
385-
&& contains(github.event.pull_request.body, '[test_forward_compat]')
386-
)
387-
|| (
388-
github.event_name == 'workflow_dispatch'
389-
&& github.repository == 'lampepfl/dotty'
390-
)"
391-
392-
steps:
393-
- name: Reset existing repo
394-
run: git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/lampepfl/dotty" && git reset --hard FETCH_HEAD || true
395-
396-
- name: Checkout cleanup script
397-
uses: actions/checkout@v2
398-
399-
- name: Cleanup
400-
run: .github/workflows/cleanup.sh
401-
402-
- name: Git Checkout
403-
uses: actions/checkout@v2
404-
405-
- name: Add SBT proxy repositories
406-
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
407-
408-
- name: Test
409-
run: |
410-
git submodule sync
411-
git submodule update --init --recursive --jobs 7
412-
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestForwardCompat"
413-
414-
=======
415-
>>>>>>> parent of e39b618f9a (-Yscala-release support: extend community build with basic forward-compat tests (compiling selected projects with "-Yscala-release 3.0"))
416366
test_sbt:
417367
runs-on: [self-hosted, Linux]
418368
container:
@@ -512,11 +462,7 @@ jobs:
512462
- ${{ github.workspace }}/../../cache/sbt:/root/.sbt
513463
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
514464
- ${{ github.workspace }}/../../cache/general:/root/.cache
515-
<<<<<<< HEAD
516-
needs: [test_non_bootstrapped, test, mima, community_build_a, community_build_b, community_build_c, community_build_forward_compat, test_sbt, test_java8]
517-
=======
518465
needs: [test_non_bootstrapped, test, community_build_a, community_build_b, community_build_c, test_sbt, test_java8]
519-
>>>>>>> parent of e39b618f9a (-Yscala-release support: extend community build with basic forward-compat tests (compiling selected projects with "-Yscala-release 3.0"))
520466
if: "(github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && github.repository == 'lampepfl/dotty'"
521467
env:
522468
NIGHTLYBUILD: yes

sbt-community-build/src/dotty/communitybuild/sbtplugin/CommunityBuildPlugin.scala

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,9 @@ object CommunityBuildPlugin extends AutoPlugin {
2828

2929
override val buildSettings: Seq[Setting[_]] = Seq(
3030
dependencyOverrides ++= {
31-
<<<<<<< HEAD
32-
if (scalaVersion.value.startsWith("3.")) {
33-
val forwardCompatFilter: ModuleID => Boolean = if (isForwardCompatProject.value) (_.revision.contains("-forward-compat")) else (!_.revision.contains("-forward-compat"))
34-
val stdlibOverrides = Seq(
35-
scalaOrganization.value %% "scala3-library" % scalaVersion.value,
36-
scalaOrganization.value %% "scala3-library_sjs1" % scalaVersion.value
37-
)
38-
CommunityBuildDependencies.allOverrides(sLog.value).filter(forwardCompatFilter) ++ stdlibOverrides
39-
} else Nil
40-
=======
4131
if (scalaVersion.value.startsWith("3."))
4232
CommunityBuildDependencies.allOverrides(sLog.value)
4333
else Nil
44-
>>>>>>> parent of e39b618f9a (-Yscala-release support: extend community build with basic forward-compat tests (compiling selected projects with "-Yscala-release 3.0"))
4534
}
4635
)
4736
}

0 commit comments

Comments
 (0)