Skip to content

Commit 2bb4e49

Browse files
committed
Fix container action errors
Error: Container operations are only supported on Linux runners
1 parent d29d028 commit 2bb4e49

File tree

1 file changed

+0
-49
lines changed

1 file changed

+0
-49
lines changed

Diff for: .github/workflows/ci.yaml

-49
Original file line numberDiff line numberDiff line change
@@ -102,62 +102,13 @@ jobs:
102102
container: lampepfl/dotty-windows:2020-10-02
103103

104104
steps:
105-
- name: Git Checkout
106-
uses: actions/checkout@v2
107-
108-
- name: Cache Ivy
109-
uses: actions/[email protected]
110-
with:
111-
path: C:\.ivy2\cache
112-
key: ${{ runner.os }}-ivy-${{ hashFiles('**/build.sbt') }}
113-
restore-keys: ${{ runner.os }}-ivy-
114-
115-
- name: Cache SBT
116-
uses: actions/[email protected]
117-
with:
118-
path: C:\.sbt
119-
key: ${{ runner.os }}-sbt-${{ hashFiles('project/**') }}
120-
restore-keys: ${{ runner.os }}-sbt-
121-
122-
- name: Cache Coursier and Mill
123-
uses: actions/[email protected]
124-
with:
125-
path: C:\.cache
126-
key: ${{ runner.os }}-general-${{ hashFiles('**/build.sbt') }}
127-
restore-keys: ${{ runner.os }}-general-
128-
129105
- name: Test
130106
run: sbt ";compile ;test"
131107

132108
test_bootstrapped-windows:
133109
runs-on: [self-hosted, Windows]
134-
container: lampepfl/dotty-windows:2020-10-02
135110

136111
steps:
137-
- name: Git Checkout
138-
uses: actions/checkout@v2
139-
140-
- name: Cache Ivy
141-
uses: actions/[email protected]
142-
with:
143-
path: C:\.ivy2\cache
144-
key: ${{ runner.os }}-ivy-${{ hashFiles('**/build.sbt') }}
145-
restore-keys: ${{ runner.os }}-ivy-
146-
147-
- name: Cache SBT
148-
uses: actions/[email protected]
149-
with:
150-
path: C:\.sbt
151-
key: ${{ runner.os }}-sbt-${{ hashFiles('project/**') }}
152-
restore-keys: ${{ runner.os }}-sbt-
153-
154-
- name: Cache Coursier and Mill
155-
uses: actions/[email protected]
156-
with:
157-
path: C:\.cache
158-
key: ${{ runner.os }}-general-${{ hashFiles('**/build.sbt') }}
159-
restore-keys: ${{ runner.os }}-general-
160-
161112
- name: Test
162113
run: sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test;sjsJUnitTests/test"
163114

0 commit comments

Comments
 (0)