Fix Pyre-Strict warning in test_jit_async_generators #36
This file contains hidden or 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
| name: CinderX | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout CinderX | |
| uses: actions/checkout@v4 | |
| with: | |
| path: cinderx | |
| - name: Checkout Meta Python | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: facebookincubator/cinder | |
| path: python | |
| ref: meta/3.12 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.12 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Build Meta Python | |
| working-directory: ./python | |
| run: ./configure && make -j 8 | |
| - name: Build CinderX | |
| working-directory: ./cinderx | |
| run: uv build --wheel | |
| - name: Unwrap CinderX Wheel | |
| working-directory: ./cinderx/dist | |
| run: unzip *.whl | |
| - name: Import and Init CinderX | |
| working-directory: ./cinderx/dist | |
| run: | | |
| PYTHONPATH=. ../../python/python -c 'import cinderx ; cinderx.init() ; assert cinderx.is_initialized()' |