Skip to content

Commit cf93726

Browse files
committed
github: workaround to still be able to build on ubuntu 18.04
1 parent de2fa1a commit cf93726

1 file changed

Lines changed: 15 additions & 12 deletions

File tree

.github/workflows/kernel.yaml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,25 @@ jobs:
2222
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
2323
id: runbranch
2424

25-
- name: "Install: go"
26-
uses: actions/setup-go@v1
27-
with:
28-
go-version: 1.21
29-
id: go
25+
# - name: "Install: go"
26+
# uses: actions/setup-go@v1
27+
# with:
28+
# go-version: 1.21
29+
# id: go
3030

3131
- name: "Install: requirements"
3232
run: |
33-
bash ./autobuild/tf-build-deps-clean.sh
33+
bash ./autobuild/tf-build-deps.sh
3434
35-
- name: "Install: rust"
36-
uses: actions-rs/toolchain@v1
37-
with:
38-
toolchain: stable
39-
target: x86_64-unknown-linux-musl
40-
default: true
35+
echo "GOPATH=/gopath" >> "$GITHUB_ENV"
36+
echo "PATH=${HOME}/.cargo/bin:${PATH}:/usr/local/go/bin" >> "$GITHUB_ENV"
37+
38+
# - name: "Install: rust"
39+
# uses: actions-rs/toolchain@v1
40+
# with:
41+
# toolchain: stable
42+
# target: x86_64-unknown-linux-musl
43+
# default: true
4144

4245
- name: "Fetch: sources"
4346
run: |

0 commit comments

Comments
 (0)