@@ -280,54 +280,54 @@ jobs:
280
280
git submodule update --init --recursive --jobs 7
281
281
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestB"
282
282
283
- community_build_c :
284
- runs-on : [self-hosted, Linux]
285
- container :
286
- image : lampepfl/dotty:2020-11-19
287
- options : --cpu-shares 4096
288
- volumes :
289
- - ${{ github.workspace }}/../../cache/sbt:/root/.sbt
290
- - ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
291
- - ${{ github.workspace }}/../../cache/general:/root/.cache
292
- if : " github.event_name == 'schedule' && github.repository == 'lampepfl/dotty'
293
- || github.event_name == 'push'
294
- || (
295
- github.event_name == 'pull_request'
296
- && !contains(github.event.pull_request.body, '[skip ci]')
297
- && !contains(github.event.pull_request.body, '[skip community_build]')
298
- )
299
- || (
300
- github.event_name == 'workflow_dispatch'
301
- && github.repository == 'lampepfl/dotty'
302
- )"
303
-
304
- steps :
305
- - name : Reset existing repo
306
- run : git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/lampepfl/dotty" && git reset --hard FETCH_HEAD || true
307
-
308
- - name : Checkout cleanup script
309
- uses : actions/checkout@v2
310
-
311
- - name : Cleanup
312
- run : .github/workflows/cleanup.sh
313
-
314
- - name : Git Checkout
315
- uses : actions/checkout@v2
316
-
317
- - name : Add SBT proxy repositories
318
- run : cp -vf .github/workflows/repositories /root/.sbt/ ; true
319
-
320
- - name : Disable experimental features on release
321
- if : " github.event_name == 'push'
322
- && startsWith(github.event.ref, 'refs/tags/')
323
- && !startsWith(github.event.ref, 'refs/tags/sbt-dotty-')"
324
- run : echo "DISALLOW_EXPERIMENTAL_FEATURES=true" >> $GITHUB_ENV
325
-
326
- - name : Test
327
- run : |
328
- git submodule sync
329
- git submodule update --init --recursive --jobs 7
330
- ./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestC"
283
+ # community_build_c:
284
+ # runs-on: [self-hosted, Linux]
285
+ # container:
286
+ # image: lampepfl/dotty:2020-11-19
287
+ # options: --cpu-shares 4096
288
+ # volumes:
289
+ # - ${{ github.workspace }}/../../cache/sbt:/root/.sbt
290
+ # - ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
291
+ # - ${{ github.workspace }}/../../cache/general:/root/.cache
292
+ # if: "github.event_name == 'schedule' && github.repository == 'lampepfl/dotty'
293
+ # || github.event_name == 'push'
294
+ # || (
295
+ # github.event_name == 'pull_request'
296
+ # && !contains(github.event.pull_request.body, '[skip ci]')
297
+ # && !contains(github.event.pull_request.body, '[skip community_build]')
298
+ # )
299
+ # || (
300
+ # github.event_name == 'workflow_dispatch'
301
+ # && github.repository == 'lampepfl/dotty'
302
+ # )"
303
+
304
+ # steps:
305
+ # - name: Reset existing repo
306
+ # run: git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/lampepfl/dotty" && git reset --hard FETCH_HEAD || true
307
+
308
+ # - name: Checkout cleanup script
309
+ # uses: actions/checkout@v2
310
+
311
+ # - name: Cleanup
312
+ # run: .github/workflows/cleanup.sh
313
+
314
+ # - name: Git Checkout
315
+ # uses: actions/checkout@v2
316
+
317
+ # - name: Add SBT proxy repositories
318
+ # run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
319
+
320
+ # - name: Disable experimental features on release
321
+ # if: "github.event_name == 'push'
322
+ # && startsWith(github.event.ref, 'refs/tags/')
323
+ # && !startsWith(github.event.ref, 'refs/tags/sbt-dotty-')"
324
+ # run: echo "DISALLOW_EXPERIMENTAL_FEATURES=true" >> $GITHUB_ENV
325
+
326
+ # - name: Test
327
+ # run: |
328
+ # git submodule sync
329
+ # git submodule update --init --recursive --jobs 7
330
+ # ./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestC"
331
331
332
332
test_sbt :
333
333
runs-on : [self-hosted, Linux]
@@ -428,7 +428,7 @@ jobs:
428
428
- ${{ github.workspace }}/../../cache/sbt:/root/.sbt
429
429
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
430
430
- ${{ github.workspace }}/../../cache/general:/root/.cache
431
- needs : [test_non_bootstrapped, test, community_build_a, community_build_b, community_build_c, test_sbt, test_java8]
431
+ needs : [test_non_bootstrapped, test, community_build_a, community_build_b, test_sbt, test_java8]
432
432
if : " (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && github.repository == 'lampepfl/dotty'"
433
433
env :
434
434
NIGHTLYBUILD : yes
@@ -511,7 +511,7 @@ jobs:
511
511
- ${{ github.workspace }}/../../cache/sbt:/root/.sbt
512
512
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
513
513
- ${{ github.workspace }}/../../cache/general:/root/.cache
514
- needs : [test_non_bootstrapped, test, community_build_a, community_build_b, community_build_c, test_sbt, test_java8]
514
+ needs : [test_non_bootstrapped, test, community_build_a, community_build_b, test_sbt, test_java8]
515
515
if : " github.event_name == 'push'
516
516
&& startsWith(github.event.ref, 'refs/tags/')
517
517
&& !startsWith(github.event.ref, 'refs/tags/sbt-dotty-')"
@@ -645,7 +645,7 @@ jobs:
645
645
- ${{ github.workspace }}/../../cache/sbt:/root/.sbt
646
646
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
647
647
- ${{ github.workspace }}/../../cache/general:/root/.cache
648
- needs : [community_build_a, community_build_b, community_build_c, test_sbt]
648
+ needs : [community_build_a, community_build_b, test_sbt]
649
649
if : " github.event_name == 'push'
650
650
&& startsWith(github.event.ref, 'refs/tags/sbt-dotty-')"
651
651
0 commit comments