Skip to content

Commit

Permalink
debuging CI, a passion
Browse files Browse the repository at this point in the history
  • Loading branch information
BDonnot committed Mar 8, 2024
1 parent b95bd0c commit 8734cbf
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
resource_class: small
steps:
- checkout
- run: apt-get update && apt-get install python3-pip python3-full -y
- run: apt-get update && apt-get install python3-full python3-dev python3-pip python3-virtualenv git -y
- run: python3 -m virtualenv venv_test
- run:
command: |
Expand All @@ -84,6 +84,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U grid2op
pip install -U pybind11
git submodule init
Expand All @@ -102,6 +103,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U grid2op
pip install -U pybind11
git submodule init
Expand All @@ -120,6 +122,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U grid2op
pip install -U pybind11
git submodule init
Expand All @@ -138,6 +141,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U grid2op
pip install -U pybind11
git submodule init
Expand All @@ -150,7 +154,7 @@ jobs:
resource_class: small
steps:
- checkout
- run: apt-get update && apt-get install python3-pip python3-full -y
- run: apt-get update && apt-get install python3-full python3-dev python3-pip python3-virtualenv git -y
# - run: python3 -m pip install virtualenv
- run: python3 -m virtualenv venv_test
- run:
Expand Down Expand Up @@ -187,6 +191,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U pybind11
git submodule init
git submodule update
Expand All @@ -209,6 +214,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U pybind11
CC=clang python setup.py build
python -m pip install .
Expand All @@ -223,6 +229,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U grid2op
pip install -U pybind11
git submodule init
Expand All @@ -241,6 +248,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U grid2op
pip install -U pybind11
git submodule init
Expand All @@ -259,6 +267,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U grid2op
pip install -U pybind11
git submodule init
Expand All @@ -277,6 +286,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U grid2op
pip install -U pybind11
git submodule init
Expand All @@ -295,6 +305,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U grid2op
pip install -U pybind11
git submodule init
Expand All @@ -313,6 +324,7 @@ jobs:
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U grid2op
pip install -U pybind11
git submodule init
Expand All @@ -325,11 +337,12 @@ jobs:
resource_class: small
steps:
- checkout
- run: apt-get update && apt-get install python3-pip python3-full git -y
- run: apt-get update && apt-get install python3-full python3-dev python3-pip python3-virtualenv git -y
- run: python3 -m virtualenv venv_test
- run:
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
pip install -U grid2op
pip install -U pybind11
git submodule init
Expand All @@ -342,12 +355,13 @@ jobs:
resource_class: small
steps:
- checkout
- run: apt-get update && apt-get install python3-pip python3-full git -y
- run: apt-get update && apt-get install python3-full python3-dev python3-pip python3-virtualenv git -y
- run: python3 -m virtualenv venv_test
- run:
name: "Install grid2op from source"
command: |
source venv_test/bin/activate
pip install --upgrade pip setuptools wheel distribute
git clone https://github.com/rte-france/grid2op.git _grid2op
pip install -e _grid2op
- run:
Expand All @@ -372,7 +386,9 @@ jobs:
size: medium # ("medium" "large" "xlarge" "2xlarge")
steps:
- checkout
- run: py -m pip install --upgrade pip setuptools wheel distribute
- run: choco install python --version=3.10
- run: py --version
- run: py -m pip install --upgrade pip setuptools wheel
- run: py -m pip install virtualenv
- run: py -m virtualenv venv_test
- run:
Expand Down

0 comments on commit 8734cbf

Please sign in to comment.