Skip to content

Commit

Permalink
remove changes in ci.yml as it wont run
Browse files Browse the repository at this point in the history
  • Loading branch information
lucyge2022 committed Apr 26, 2024
1 parent a24652f commit 647e3ea
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,35 +7,35 @@ defaults:
shell: bash -l -eo pipefail {0}

jobs:
alluxiocommon:
name: Build alluxiocommon
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fase: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --manifest-path rust/alluxiocommon/Cargo.toml
sccache: 'true'
manylinux: auto
- name: pytest
if: ${{ startsWith(matrix.platform.target, 'x86_64') }}
shell: bash
run: |
set -e
pip install alluxiocommon --find-links dist --force-reinstall
pip install pytest
pytest -vv \
--log-format="%(asctime)s %(levelname)s %(message)s" \
--log-date-format="%H:%M:%S" \
rust/alluxiocommon/tests/
# alluxiocommon:
# name: Build alluxiocommon
# runs-on: ubuntu-latest
# timeout-minutes: 10
# strategy:
# fail-fase: false
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# with:
# python-version: '3.10'
# - name: Build wheels
# uses: PyO3/maturin-action@v1
# with:
# target: ${{ matrix.platform.target }}
# args: --release --out dist --find-interpreter --manifest-path rust/alluxiocommon/Cargo.toml
# sccache: 'true'
# manylinux: auto
# - name: pytest
# if: ${{ startsWith(matrix.platform.target, 'x86_64') }}
# shell: bash
# run: |
# set -e
# pip install alluxiocommon --find-links dist --force-reinstall
# pip install pytest
# pytest -vv \
# --log-format="%(asctime)s %(levelname)s %(message)s" \
# --log-date-format="%H:%M:%S" \
# rust/alluxiocommon/tests/
# - name: pytest
# if: ${{ !startsWith(matrix.platform.target, 'x86') && matrix.platform.target != 'ppc64' }}
# uses: uraimo/[email protected]
Expand All @@ -53,7 +53,7 @@ jobs:
# cd /root/github/alluxiofs/rust/alluxiocommon && pytest

test:
needs: alluxiocommon
# needs: alluxiocommon
name: Test
runs-on: ubuntu-latest
timeout-minutes: 10
Expand Down

0 comments on commit 647e3ea

Please sign in to comment.