Skip to content

Commit

Permalink
trying to natively build on m1 chip, removing linnux build on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
BDonnot committed Apr 12, 2024
1 parent cdfbb35 commit bb9e3c7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,9 @@ jobs:

- name: Install wheel
shell: bash
run: python -m pip install dist/*.whl --user
pip freeze
run: |
python -m pip install dist/*.whl --user
python -m pip freeze
- name: Check package can be imported (bare install)
run: |
Expand All @@ -419,7 +420,7 @@ jobs:
python -m pip freeze
- name: Check extra can be imported can be imported (with grid2op)
run:
run: |
cd tmp_for_import_checking
python -v -c "from lightsim2grid import LightSimBackend"
python -c "from lightsim2grid.timeSerie import TimeSerie"
Expand All @@ -428,7 +429,7 @@ jobs:
python -c "from lightsim2grid.securityAnalysis import SecurityAnalysis"
- name: Check LightSimBackend can be used to create env
run:
run: |
cd tmp_for_import_checking
python -v -c "from lightsim2grid import LightSimBackend; import grid2op; env = grid2op.make('l2rpn_case14_sandbox', test=True, backend=LightSimBackend())"
Expand Down

0 comments on commit bb9e3c7

Please sign in to comment.