Skip to content

Commit

Permalink
try reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
lucyge2022 committed Apr 29, 2024
1 parent c8d9743 commit a8f0806
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,17 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

# alluxiocommon related
- name: Build alluxiocommon wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release -i python${{ matrix.python-version }} --out dist -m rust/alluxiocommon/Cargo.toml
manylinux: auto

- name: List dist contents
run: ls -l dist/

- name: Setup Conda Environment
uses: mamba-org/setup-micromamba@v1
with:
Expand All @@ -86,23 +97,12 @@ jobs:
- name: Install dependencies
run: |
pip install .[tests]
# alluxiocommon related
- name: Build alluxiocommon wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release -i python${{ matrix.python-version }} --out dist -m rust/alluxiocommon/Cargo.toml
manylinux: auto

- name: List dist contents
run: ls -l dist/
pip install alluxiocommon --no-index --find-links=dist/ --force-reinstall
- name: Run AlluxioCommon tests
shell: bash
run: |
set -e
pip install alluxiocommon --no-index --find-links=dist/ --force-reinstall
# set -e
pip install pytest
pytest -vv \
--log-format="%(asctime)s %(levelname)s %(message)s" \
Expand Down

0 comments on commit a8f0806

Please sign in to comment.