@@ -34,24 +34,6 @@ inputs:
34
34
runs :
35
35
using : " composite"
36
36
steps :
37
- - name : Install Dependencies
38
- shell : bash
39
- run : |
40
- sudo rm -f /var/lib/apt/lists/lock /var/lib/dpkg/lock
41
- sudo apt update -qq
42
- sudo DEBIAN_FRONTEND=noninteractive apt install -yq --no-install-recommends \
43
- python3 git curl libelf-dev lld \
44
- build-essential flex bison libssl-dev \
45
- libncurses-dev liblz4-tool zlib1g-dev \
46
- libxml2-utils rsync unzip
47
-
48
- - name : Install Repo Tool
49
- shell : bash
50
- run : |
51
- curl https://storage.googleapis.com/git-repo-downloads/repo > ~/repo
52
- chmod a+x ~/repo
53
- sudo mv ~/repo /usr/local/bin/repo
54
-
55
37
- name : Setup Build System
56
38
shell : bash
57
39
run : |
76
58
echo "REPO=$GITHUB_WORKSPACE/./git-repo/repo" >> "$GITHUB_ENV"
77
59
echo "CONFIG=${{ inputs.model }}" >> "$GITHUB_ENV"
78
60
61
+ - name : Install Dependencies
62
+ shell : bash
63
+ run : |
64
+ sudo rm -f /var/lib/apt/lists/lock /var/lib/dpkg/lock
65
+ sudo apt update -qq
66
+ sudo DEBIAN_FRONTEND=noninteractive apt install -yq --no-install-recommends \
67
+ python3 git curl libelf-dev lld \
68
+ build-essential flex bison libssl-dev \
69
+ libncurses-dev liblz4-tool zlib1g-dev \
70
+ libxml2-utils rsync unzip
71
+
72
+ - name : Install Repo Tool
73
+ shell : bash
74
+ run : |
75
+ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/repo
76
+ chmod a+x ~/repo
77
+ sudo mv ~/repo /usr/local/bin/repo
78
+
79
79
- name : Clone AnyKernel3 and Other Dependencies
80
80
shell : bash
81
81
run : |
0 commit comments