Skip to content

Commit 2e0f822

Browse files
committed
fix: run transpiler tests in ci without docker
1 parent 6b0d485 commit 2e0f822

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/test-transpiler.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
id: tests
2727
run: |
2828
cd ivy
29-
docker run --rm -v "$(pwd)":/ivy ivyllc/ivy:latest scripts/shell/run_transpiler_tests.sh transformations
29+
python3 -m pip install -r requirements/requirements.txt
30+
scripts/shell/run_transpiler_tests.sh transformations
3031
3132
translations:
3233
strategy:
@@ -45,7 +46,8 @@ jobs:
4546
id: tests
4647
run: |
4748
cd ivy
48-
docker run --rm -v "$(pwd)":/ivy ivyllc/ivy:latest scripts/shell/run_transpiler_tests.sh translations
49+
python3 -m pip install -r requirements/requirements.txt
50+
scripts/shell/run_transpiler_tests.sh translations
4951
5052
module:
5153
strategy:
@@ -64,7 +66,8 @@ jobs:
6466
id: tests
6567
run: |
6668
cd ivy
67-
docker run --rm -v "$(pwd)":/ivy ivyllc/ivy:latest scripts/shell/run_transpiler_tests.sh module
69+
python3 -m pip install -r requirements/requirements.txt
70+
scripts/shell/run_transpiler_tests.sh module
6871
6972
sourcegen:
7073
strategy:
@@ -83,7 +86,8 @@ jobs:
8386
id: tests
8487
run: |
8588
cd ivy
86-
docker run --rm -v "$(pwd)":/ivy ivyllc/ivy:latest scripts/shell/run_transpiler_tests.sh sourcegen
89+
python3 -m pip install -r requirements/requirements.txt
90+
scripts/shell/run_transpiler_tests.sh sourcegen
8791
8892
kornia:
8993
strategy:
@@ -102,4 +106,5 @@ jobs:
102106
id: tests
103107
run: |
104108
cd ivy
105-
docker run --rm -v "$(pwd)":/ivy ivyllc/ivy:latest scripts/shell/run_transpiler_tests.sh kornia
109+
python3 -m pip install -r requirements/requirements.txt
110+
scripts/shell/run_transpiler_tests.sh kornia

0 commit comments

Comments
 (0)