Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed the way we install python2 #5207

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ runs:
- name: Install Python for node-sass
shell: bash
run: |
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y --no-install-recommends python2
DEBIAN_FRONTEND=noninteractive wget https://www.python.org/ftp/python/2.2/Python-2.2.tgz
DEBIAN_FRONTEND=noninteractive sudo tar xzf Python-2.2.tgz
DEBIAN_FRONTEND=noninteractive cd Python-2.2
DEBIAN_FRONTEND=noninteractive sudo ./configure --enable-optimizations
DEBIAN_FRONTEND=noninteractive sudo make install

- name: Install packages
shell: bash
Expand Down
Loading