@@ -15,12 +15,12 @@ jobs:
15
15
matrix :
16
16
rust :
17
17
- stable
18
- - beta
19
- - nightly
20
- - 1.51.0 # Minimum supported rust version (MSRV)
21
- include :
22
- - rust : nightly
23
- experimental : true
18
+ # - beta
19
+ # - nightly
20
+ # - 1.51.0 # Minimum supported rust version (MSRV)
21
+ # include:
22
+ # - rust: nightly
23
+ # experimental: true
24
24
25
25
steps :
26
26
- uses : actions/checkout@v2
@@ -38,19 +38,19 @@ jobs:
38
38
run : |
39
39
pip3 install --user python-dateutil linkchecker
40
40
41
- - name : Cache installed binaries
42
- uses : actions/cache@v1
43
- id : cache-bin
44
- with :
45
- path : ~/cache-bin
46
- key : cache-bin
41
+ # - name: Cache installed binaries
42
+ # uses: actions/cache@v1
43
+ # id: cache-bin
44
+ # with:
45
+ # path: ~/cache-bin
46
+ # key: cache-bin
47
47
48
- - name : Install mdbook
49
- if : steps.cache-bin.outputs.cache-hit != 'true'
50
- uses :
actions-rs/[email protected]
51
- with :
52
- crate : mdbook
53
- version : latest
48
+ # - name: Install mdbook
49
+ # if: steps.cache-bin.outputs.cache-hit != 'true'
50
+ # uses: actions-rs/[email protected]
51
+ # with:
52
+ # crate: mdbook
53
+ # version: latest
54
54
55
55
- name : Install cargo-binutils
56
56
if : steps.cache-bin.outputs.cache-hit != 'true'
77
77
cp ~/.cargo/bin/* ~/cache-bin
78
78
79
79
- name : Put new bin directory into path
80
- run : echo "~/cache-bin" >> $GITHUB_PATH
80
+ run : |
81
+ echo "~/cache-bin" >> $GITHUB_PATH
82
+
83
+ - name : Test arm-none-eabi-gcc
84
+ run : |
85
+ echo $PATH
86
+ arm-none-eabi-gcc --version
81
87
82
88
- name : Test
83
89
run : bash ci/script.sh
@@ -102,7 +108,7 @@ jobs:
102
108
key : cache-bin
103
109
104
110
- name : Put new bin directory into path
105
- run : echo "~ /cache-bin" >> $GITHUB_PATH
111
+ run : echo "$HOME /cache-bin" >> $GITHUB_PATH
106
112
107
113
- name : Build the book
108
114
run : mdbook build
0 commit comments