@@ -4,7 +4,7 @@ on: [push, pull_request]
4
4
5
5
jobs :
6
6
test :
7
- runs-on : ubuntu-latest
7
+ runs-on : self-hosted
8
8
container : akmetiuk/dotty:2020-02-12
9
9
10
10
steps :
38
38
./project/scripts/cmdTests
39
39
40
40
test_bootstrapped :
41
- runs-on : ubuntu-latest
41
+ runs-on : self-hosted
42
42
container : akmetiuk/dotty:2020-02-12
43
43
44
44
steps :
@@ -71,43 +71,43 @@ jobs:
71
71
./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test;sjsSandbox/run;sjsSandbox/test;sjsJUnitTests/test ;configureIDE"
72
72
./project/scripts/bootstrapCmdTests
73
73
74
- # community_build:
75
- # runs-on: ubuntu-latest
76
- # container: akmetiuk/dotty:2020-02-12
77
-
78
- # steps:
79
- # - name: Git Checkout
80
- # uses: actions/checkout@v2
81
-
82
- # - name: Cache Ivy
83
-
84
- # with:
85
- # path: /root/.ivy2/cache
86
- # key: ${{ runner.os }}-ivy-${{ hashFiles('**/build.sbt') }}
87
- # restore-keys: ${{ runner.os }}-ivy-
88
-
89
- # - name: Cache SBT
90
-
91
- # with:
92
- # path: /root/.sbt
93
- # key: ${{ runner.os }}-sbt-${{ hashFiles('project/**') }}
94
- # restore-keys: ${{ runner.os }}-sbt-
95
-
96
- # - name: Cache Coursier and Mill
97
-
98
- # with:
99
- # path: /root/.cache
100
- # key: ${{ runner.os }}-general-${{ hashFiles('**/build.sbt') }}
101
- # restore-keys: ${{ runner.os }}-general-
102
-
103
- # - name: Test
104
- # run: |
105
- # git submodule sync
106
- # git submodule update --init --recursive --jobs 7
107
- # ./project/scripts/sbt community-build/test
74
+ community_build :
75
+ runs-on : self-hosted
76
+ container : akmetiuk/dotty:2020-02-12
77
+
78
+ steps :
79
+ - name : Git Checkout
80
+ uses : actions/checkout@v2
81
+
82
+ - name : Cache Ivy
83
+
84
+ with :
85
+ path : /root/.ivy2/cache
86
+ key : ${{ runner.os }}-ivy-${{ hashFiles('**/build.sbt') }}
87
+ restore-keys : ${{ runner.os }}-ivy-
88
+
89
+ - name : Cache SBT
90
+
91
+ with :
92
+ path : /root/.sbt
93
+ key : ${{ runner.os }}-sbt-${{ hashFiles('project/**') }}
94
+ restore-keys : ${{ runner.os }}-sbt-
95
+
96
+ - name : Cache Coursier and Mill
97
+
98
+ with :
99
+ path : /root/.cache
100
+ key : ${{ runner.os }}-general-${{ hashFiles('**/build.sbt') }}
101
+ restore-keys : ${{ runner.os }}-general-
102
+
103
+ - name : Test
104
+ run : |
105
+ git submodule sync
106
+ git submodule update --init --recursive --jobs 7
107
+ ./project/scripts/sbt community-build/test
108
108
109
109
test_sbt :
110
- runs-on : ubuntu-latest
110
+ runs-on : self-hosted
111
111
container : akmetiuk/dotty:2020-02-12
112
112
if : github.event_name == 'push' &&
113
113
startsWith(github.event.ref, 'refs/tags/')
@@ -141,7 +141,7 @@ jobs:
141
141
run : ./project/scripts/sbt sbt-dotty/scripted
142
142
143
143
test_java11 :
144
- runs-on : ubuntu-latest
144
+ runs-on : self-hosted
145
145
container : akmetiuk/dotty:2020-02-12
146
146
if : github.event_name == 'push' &&
147
147
startsWith(github.event.ref, 'refs/tags/')
0 commit comments