File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 2929 - name : Install Rust (rustup)
3030 run : rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
3131 shell : bash
32+
3233 - run : cargo test
3334
35+ # Compile it from source (temporarily)
36+ - name : Make GNU Make from source
37+ if : ${{ !startsWith(matrix.os, 'windows') }}
38+ env :
39+ VERSION : " 4.4.1"
40+ shell : bash
41+ run : |
42+ wget -q "https://ftp.gnu.org/gnu/make/make-${VERSION}.tar.gz"
43+ tar zxf "make-${VERSION}.tar.gz"
44+ pushd "make-${VERSION}"
45+ ./configure
46+ make
47+ popd
48+ cp -rp "make-${VERSION}/make" .
49+ - name : Test against GNU Make from source
50+ if : ${{ !startsWith(matrix.os, 'windows') }}
51+ shell : bash
52+ run :
53+ MAKE="${PWD}/make" cargo test
54+
3455 rustfmt :
3556 name : Rustfmt
3657 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments