File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 88
99jobs :
1010 install :
11- name : Rust ${{matrix.rust}}
12- runs-on : ubuntu-latest
11+ name : Rust ${{matrix.rust}} ${{matrix.os}}
12+ runs-on : ${{matrix.os}}
1313 strategy :
1414 fail-fast : false
1515 matrix :
2323 " beta" ,
2424 " stable" ,
2525 ]
26+ os : [
27+ " ubuntu-latest" ,
28+ " windows-latest" ,
29+ " macos-latest" ,
30+ ]
2631 steps :
2732 - uses : actions/checkout@v3
2833 # Test toolchain file support
Original file line number Diff line number Diff line change @@ -44,6 +44,13 @@ outputs:
4444runs :
4545 using : composite
4646 steps :
47+ # The later code uses "newer" bash features, which are not available in the ancient bash 3 (from 2014) of macOS
48+ - name : Unbork mac
49+ if : runner.os == 'macOS'
50+ run : |
51+ brew install bash
52+ shell : bash
53+
4754 - id : flags
4855 run : |
4956 : construct rustup command line
You can’t perform that action at this time.
0 commit comments