File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change 50
50
sudo apt-get autoclean -y
51
51
echo "Package cleanup complete"
52
52
df -h
53
- sudo apt update
54
- sudo apt install -y python3 python-is-python3
55
- mkdir -p ./git-repo
56
- curl -sSL https://storage.googleapis.com/git-repo-downloads/repo > ./git-repo/repo
57
- chmod a+rx ./git-repo/repo
58
- echo "REPO=$GITHUB_WORKSPACE/./git-repo/repo" >> "$GITHUB_ENV"
59
- echo "CONFIG=${{ inputs.model }}" >> "$GITHUB_ENV"
60
53
61
54
- name : Install Dependencies
62
55
shell : bash
@@ -67,14 +60,16 @@ runs:
67
60
python3 git curl libelf-dev lld \
68
61
build-essential flex bison libssl-dev \
69
62
libncurses-dev liblz4-tool zlib1g-dev \
70
- libxml2-utils rsync unzip
63
+ libxml2-utils rsync unzip python3 python-is-python3
71
64
72
65
- name : Install Repo Tool
73
66
shell : bash
74
67
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
68
+ mkdir -p ./git-repo
69
+ curl -sSL https://storage.googleapis.com/git-repo-downloads/repo > ./git-repo/repo
70
+ chmod a+rx ./git-repo/repo
71
+ echo "REPO=$GITHUB_WORKSPACE/./git-repo/repo" >> "$GITHUB_ENV"
72
+ echo "CONFIG=${{ inputs.model }}" >> "$GITHUB_ENV"
78
73
79
74
- name : Clone AnyKernel3 and Other Dependencies
80
75
shell : bash
You can’t perform that action at this time.
0 commit comments