File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 8
8
shell : bash
9
9
working-directory : /home/runner
10
10
run : |
11
- pwd
12
11
sudo apt-get update
13
- sudo apt-get install git-core gnupg flex bison build-essential zip curl zlib1g-dev libc6-dev-i386 x11proto-core-dev libx11-dev lib32z1-dev libgl1-mesa-dev libxml2-utils xsltproc unzip fontconfig python2 python3
12
+ sudo apt-get install git-core gnupg flex bison build-essential zip curl zlib1g-dev libc6-dev-i386 x11proto-core-dev libx11-dev lib32z1-dev libgl1-mesa-dev libxml2-utils xsltproc unzip fontconfig
13
+
14
+ # Set up python2
15
+ wget https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tgz
16
+ tar xvf Python-2.7.18.tgz
17
+ cd Python-2.7.18
18
+ ./configure --enable-optimizations
19
+ make -j$(nproc)
20
+ sudo make altinstall
21
+ sudo ln -s /usr/local/bin/python2.7 /usr/bin/python
22
+ rm Python-2.7.18.tgz
Original file line number Diff line number Diff line change 18
18
19
19
jobs :
20
20
build-kernel :
21
- runs-on : ubuntu-22.04
21
+ runs-on : ubuntu-latest
22
22
23
23
steps :
24
24
- name : Checkout Workflow Repository
You can’t perform that action at this time.
0 commit comments