Merge branch 'main' into tristate #1
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 workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: PyTest Metainterp and Codewriter | |
on: | |
push: | |
branches: [ "tristate", "tristate-experimental", "main", "master" ] | |
pull_request: | |
branches: [ "tristate", "tristate-experimental", "main", "master" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 2.7 | |
uses: MatteoH2O1999/setup-python@v2 | |
with: | |
python-version: "2.7" | |
- name: Checkout PyPy | |
uses: actions/checkout@v3 | |
with: | |
repository: mozillazg/pypy | |
path: pypy | |
- name: install dependencies | |
run: | | |
python -m pip install "hypothesis<4.40" rply attrs setuptools z3-solver | |
sudo apt install libgc-dev | |
- name: Test with pytest | |
run: | | |
python pypy/pytest.py -v rpython/jit/metainterp/ rpython/jit/codewriter/ rpython/jit/backend/x86/test/test_ztranslation_basic.py --z3-timeout=3000 |