Skip to content

Commit 2209150

Browse files
committed
Fix order of PATH to give custom PyPy higher priority
Signed-off-by: Stefan Marr <[email protected]>
1 parent 7aa89dc commit 2209150

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.gitlab-ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ build-and-test-interpreters:
5151
stage: build-test
5252
tags: [yuria]
5353
script:
54-
- export PATH=$PATH:$PYPY_BIN_DIR
54+
- export PATH=$PYPY_BIN_DIR:$PATH
5555
- export SOM_INTERP=BC
5656
- (cd Examples/Benchmarks/TestSuite && ./duplicate-tests.sh)
5757

@@ -90,7 +90,7 @@ build-and-test-jit-bc:
9090
stage: build-test
9191
tags: [yuria2]
9292
script:
93-
- export PATH=$PATH:$PYPY_BIN_DIR
93+
- export PATH=$PYPY_BIN_DIR:$PATH
9494
- export SOM_INTERP=BC
9595

9696
# JIT Compiled Version
@@ -112,7 +112,7 @@ build-and-test-jit-ast:
112112
stage: build-test
113113
tags: [yuria3]
114114
script:
115-
- export PATH=$PATH:$PYPY_BIN_DIR
115+
- export PATH=$PYPY_BIN_DIR:$PATH
116116
- export SOM_INTERP=AST
117117

118118
# JIT Compiled Version

0 commit comments

Comments
 (0)