From 625a47592bd175c76d864c3067f4b19c27b78c08 Mon Sep 17 00:00:00 2001 From: Stefan Marr Date: Sun, 7 Jun 2026 18:33:15 +0200 Subject: [PATCH 1/2] Move GitLab CI Setup to JKU Signed-off-by: Stefan Marr --- .gitlab-ci.yml | 16 ++++++++-------- README.md | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3fbc00f4..49e5e649 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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} @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/README.md b/README.md index 05ac0123..b2c22725 100644 --- a/README.md +++ b/README.md @@ -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 From 73c9753947bcbed5992c2ccdb0ade2a217400d85 Mon Sep 17 00:00:00 2001 From: Stefan Marr Date: Sun, 7 Jun 2026 18:37:13 +0200 Subject: [PATCH 2/2] [GHA] Update PyPy to 7.3.23 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There’s an issue with downloading 7.3.18 Signed-off-by: Stefan Marr --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54395753..f5812b0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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