forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into pythongh-112536-tsa…
…n-tests
- Loading branch information
Showing
105 changed files
with
1,171 additions
and
652 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
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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
on: | ||
workflow_call: | ||
inputs: | ||
config_hash: | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
build_wasi_reusable: | ||
name: 'build and test' | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-20.04 | ||
env: | ||
WASMTIME_VERSION: 18.0.2 | ||
WASI_SDK_VERSION: 20 | ||
WASI_SDK_PATH: /opt/wasi-sdk | ||
CROSS_BUILD_PYTHON: cross-build/build | ||
CROSS_BUILD_WASI: cross-build/wasm32-wasi | ||
steps: | ||
- uses: actions/checkout@v4 | ||
# No problem resolver registered as one doesn't currently exist for Clang. | ||
- name: "Install wasmtime" | ||
uses: jcbhmr/setup-wasmtime@v2 | ||
with: | ||
wasmtime-version: ${{ env.WASMTIME_VERSION }} | ||
- name: "Restore WASI SDK" | ||
id: cache-wasi-sdk | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.WASI_SDK_PATH }} | ||
key: ${{ runner.os }}-wasi-sdk-${{ env.WASI_SDK_VERSION }} | ||
- name: "Install WASI SDK" | ||
if: steps.cache-wasi-sdk.outputs.cache-hit != 'true' | ||
run: | | ||
mkdir ${{ env.WASI_SDK_PATH }} && \ | ||
curl -s -S --location https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${{ env.WASI_SDK_VERSION }}/wasi-sdk-${{ env.WASI_SDK_VERSION }}.0-linux.tar.gz | \ | ||
tar --strip-components 1 --directory ${{ env.WASI_SDK_PATH }} --extract --gunzip | ||
- name: "Configure ccache action" | ||
uses: hendrikmuhs/ccache-action@v1.2 | ||
with: | ||
save: ${{ github.event_name == 'push' }} | ||
max-size: "200M" | ||
- name: "Add ccache to PATH" | ||
run: echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV | ||
- name: "Install Python" | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
- name: "Restore Python build config.cache" | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.CROSS_BUILD_PYTHON }}/config.cache | ||
key: ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ inputs.config_hash }} | ||
- name: "Configure build Python" | ||
run: python3 Tools/wasm/wasi.py configure-build-python -- --config-cache --with-pydebug | ||
- name: "Make build Python" | ||
run: python3 Tools/wasm/wasi.py make-build-python | ||
- name: "Restore host config.cache" | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ env.CROSS_BUILD_WASI }}/config.cache | ||
key: ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-wasi-sdk-${{ env.WASI_SDK_VERSION }}-${{ inputs.config_hash }} | ||
- name: "Configure host" | ||
# `--with-pydebug` inferred from configure-build-python | ||
run: python3 Tools/wasm/wasi.py configure-host -- --config-cache | ||
- name: "Make host" | ||
run: python3 Tools/wasm/wasi.py make-host | ||
- name: "Display build info" | ||
run: make --directory ${{ env.CROSS_BUILD_WASI }} pythoninfo | ||
- name: "Test" | ||
run: make --directory ${{ env.CROSS_BUILD_WASI }} test |
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
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
Oops, something went wrong.