File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 42
42
timeout-minutes : 0
43
43
runs-on : ${{ matrix.build_os }}
44
44
steps :
45
+ # TODO(katei): Remove this step after https://bugs.swift.org/browse/SR-15135 will be resolved
46
+ - name : (Workaround) Uninstall pre-installed Swift toolchain on Linux
47
+ if : ${{ matrix.build_os == 'ubuntu-20.04' || matrix.build_os == 'ubuntu-18.04' }}
48
+ run : |
49
+ # Installer script is here: https://github.com/actions/virtual-environments/blob/1cbea058249db750691ec74f1b3ba9a7b1605d26/images/linux/scripts/installers/swift.sh
50
+ rm -f /usr/local/bin/swiftc /usr/local/bin/swift
51
+ rm -rf /usr/share/swift/
52
+
45
53
- name : Free disk space
46
54
if : ${{ matrix.build_os == 'ubuntu-20.04' || matrix.build_os == 'ubuntu-18.04' }}
47
55
run : |
You can’t perform that action at this time.
0 commit comments