Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Download PyPy Sources
if: matrix.id != 'basic'
run: |
export PYPYVER=v7.3.18
export PYPYVER=v7.3.23
curl https://downloads.python.org/pypy/pypy2.7-${PYPYVER}-src.tar.bz2 -o pypy.tar.bz2
tar -xjf pypy.tar.bz2
mv pypy2.7-${PYPYVER}-src .pypy
Expand Down
16 changes: 8 additions & 8 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ before_script:

build:aarch64-test-and-rebench:
stage: build-test
tags: [zullie1]
tags: [kent-zullie1]

script:
- export PATH=/opt/local/bin:/opt/local/sbin:/Users/gitlab-runner/Library/Python/3.12/bin:${PATH}:${PYPY_BIN_DIR}
Expand Down Expand Up @@ -49,7 +49,7 @@ build:aarch64-test-and-rebench:

build-and-test-interpreters:
stage: build-test
tags: [yuria]
tags: [kent-yuria]
script:
- export PATH=$PYPY_BIN_DIR:$PATH
- export SOM_INTERP=BC
Expand Down Expand Up @@ -88,7 +88,7 @@ build-and-test-interpreters:

build-and-test-jit-bc:
stage: build-test
tags: [yuria2]
tags: [kent-yuria2]
script:
- export PATH=$PYPY_BIN_DIR:$PATH
- export SOM_INTERP=BC
Expand All @@ -110,7 +110,7 @@ build-and-test-jit-bc:

build-and-test-jit-ast:
stage: build-test
tags: [yuria3]
tags: [kent-yuria3]
script:
- export PATH=$PYPY_BIN_DIR:$PATH
- export SOM_INTERP=AST
Expand All @@ -134,7 +134,7 @@ benchmark-y1:
stage: benchmark
needs:
[build-and-test-interpreters, build-and-test-jit-bc, build-and-test-jit-ast]
tags: [yuria]
tags: [kent-yuria]
script:
- sftp tmp-artifacts:incoming/${CI_PIPELINE_ID}/som-ast-jit.lz4
- sftp tmp-artifacts:incoming/${CI_PIPELINE_ID}/som-ast-interp.lz4
Expand All @@ -153,7 +153,7 @@ benchmark-y2:
stage: benchmark
needs:
[build-and-test-interpreters, build-and-test-jit-bc, build-and-test-jit-ast]
tags: [yuria2]
tags: [kent-yuria2]
script:
- sftp tmp-artifacts:incoming/${CI_PIPELINE_ID}/som-ast-jit.lz4
- sftp tmp-artifacts:incoming/${CI_PIPELINE_ID}/som-ast-interp.lz4
Expand All @@ -172,7 +172,7 @@ benchmark-y3:
stage: benchmark
needs:
[build-and-test-interpreters, build-and-test-jit-bc, build-and-test-jit-ast]
tags: [yuria3]
tags: [kent-yuria3]
script:
- sftp tmp-artifacts:incoming/${CI_PIPELINE_ID}/som-ast-jit.lz4
- sftp tmp-artifacts:incoming/${CI_PIPELINE_ID}/som-ast-interp.lz4
Expand All @@ -191,6 +191,6 @@ report-completion:
stage: benchmark-completion
needs:
[benchmark-y1, benchmark-y2, benchmark-y3, build:aarch64-test-and-rebench]
tags: [yuria]
tags: [kent-yuria]
script:
- rebench --experiment="CI ID $CI_PIPELINE_ID" --report-completion rebench.conf
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@ Thanks to GitHub Actions, all pull requests of this repository are automatically
The current build status is: [![Build Status](https://github.com/SOM-st/PySOM/actions/workflows/ci.yml/badge.svg)](https://github.com/SOM-st/PySOM/actions)

[SOM]: http://www.hpi.uni-potsdam.de/hirschfeld/projects/som/
[SOMst]: https://travis-ci.org/SOM-st/
[SOMst]: https://som-st.github.io
[RS]: http://dx.doi.org/10.1016/j.cl.2005.02.003
Loading