We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dfbdfc commit fad7ffdCopy full SHA for fad7ffd
.github/workflows/ci.yml
@@ -73,14 +73,20 @@ jobs:
73
74
- name: Install dependent packages
75
run: |
76
+ set -ex
77
sudo apt-get update
78
sudo apt-get install gcc-aarch64-linux-gnu gcc-arm-linux-gnueabi{,hf} libelf-dev u-boot-tools
79
+ # We need this newer version of Go.
80
+ wget https://go.dev/dl/go1.17.5.linux-amd64.tar.gz
81
+ sudo rm -rf /usr/local/go
82
+ sudo tar -C /usr/local -xzf go1.17.5.linux-amd64.tar.gz
83
84
# Runs a set of commands using the runners shell
85
- name: Make ${{ matrix.mainboard }} kernel
86
87
88
cd mainboards
- PATH=$PATH:$GOPATH/bin
89
+ PATH=$GOPATH/bin:/usr/local/go/bin:$PATH
90
cd $(echo ${{ matrix.mainboard }} | tr '-' '/')
91
make fetch
92
make flashkernel
0 commit comments