-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
395e6dc
commit ba25863
Showing
2 changed files
with
12 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -228,17 +228,13 @@ jobs: | |
needs: artifacts | ||
if: needs.artifacts.result == 'success' | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.11' | ||
- name: Build demjson | ||
shell: bash | ||
run: | | ||
curl -sSo Python-3.11.11.tar.xz https://www.python.org/ftp/python/3.11.11/Python-3.11.11.tar.xz | ||
tar -xJf Python-3.11.11.tar.xz | ||
cd Python-3.11.11 | ||
sudo ./configure --prefix=/opt/python/3.11.11/ --enable-optimizations --with-lto --with-computed-gotos --with-system-ffi | ||
sudo make -j "$(nproc)" | ||
sudo make altinstall | ||
cd .. | ||
rm Python-3.11.11.tar.xz | ||
python -c "import sys; print(sys.version)" | ||
curl -sSo pip.pyz https://bootstrap.pypa.io/pip/pip.pyz | ||
python pip.pyz -V | ||
python pip.pyz install setuptools==57.5.0 | ||
|
@@ -352,17 +348,13 @@ jobs: | |
needs: release | ||
if: needs.release.result == 'success' | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.11' | ||
- name: Build demjson | ||
shell: bash | ||
run: | | ||
curl -sSo Python-3.11.11.tar.xz https://www.python.org/ftp/python/3.11.11/Python-3.11.11.tar.xz | ||
tar -xJf Python-3.11.11.tar.xz | ||
cd Python-3.11.11 | ||
sudo ./configure --prefix=/opt/python/3.11.11/ --enable-optimizations --with-lto --with-computed-gotos --with-system-ffi | ||
sudo make -j "$(nproc)" | ||
sudo make altinstall | ||
cd .. | ||
rm Python-3.11.11.tar.xz | ||
python -c "import sys; print(sys.version)" | ||
curl -sSo pip.pyz https://bootstrap.pypa.io/pip/pip.pyz | ||
python pip.pyz -V | ||
python pip.pyz install setuptools==57.5.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,17 +10,13 @@ jobs: | |
jsonlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.11' | ||
- name: Build demjson | ||
shell: bash | ||
run: | | ||
curl -sSo Python-3.11.11.tar.xz https://www.python.org/ftp/python/3.11.11/Python-3.11.11.tar.xz | ||
tar -xJf Python-3.11.11.tar.xz | ||
cd Python-3.11.11 | ||
sudo ./configure --prefix=/opt/python/3.11.11/ --enable-optimizations --with-lto --with-computed-gotos --with-system-ffi | ||
sudo make -j "$(nproc)" | ||
sudo make altinstall | ||
cd .. | ||
rm Python-3.11.11.tar.xz | ||
python -c "import sys; print(sys.version)" | ||
curl -sSo pip.pyz https://bootstrap.pypa.io/pip/pip.pyz | ||
python pip.pyz -V | ||
python pip.pyz install setuptools==57.5.0 | ||
|