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
24 changes: 11 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,19 @@ jobs:
- os: macos-latest
job: test-osx

- os: ubuntu-20.04
- os: ubuntu-24.04
job: test-1

- os: ubuntu-20.04
- os: ubuntu-24.04
job: test-2

- os: ubuntu-20.04
- os: ubuntu-24.04
job: lint


runs-on: ubuntu-20.04 # ubuntu-latest
runs-on: ubuntu-24.04 # ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -78,13 +77,12 @@ jobs:
export JAVA_HOME=$JAVA_HOME_17_X64
./tests/replay/test.sh 2

# Disabled due to breaking changes in the tracing infrastructure. Not fixed to make merge of Snapshotting PR(#293) easier.
#- name: Snapshot Tests
# Disabled due to breaking changes in the tracing infrastructure. Not fixed to make merge of Snapshotting PR(#293) easier.
#- name: Snapshot Tests
# script:
# - run ./tests/snapshot/test.sh
# - $ANT serialization-tests


- name: CheckStyle
if: matrix.job == 'lint'
run: |
Expand All @@ -93,10 +91,10 @@ jobs:
- name: Download Eclipse
if: matrix.job == 'lint'
run: |
export ECLIPSE_TAR=eclipse.tar.gz
export ECLIPSE_URL=https://mirror.dkm.cz/eclipse/eclipse/downloads/drops4/R-4.25-202208311800/eclipse-SDK-4.25-linux-gtk-x86_64.tar.gz
curl ${ECLIPSE_URL} -o ${ECLIPSE_TAR}
tar -C ${GITHUB_WORKSPACE}/.. -xzf ${ECLIPSE_TAR}
export ECLIPSE_TAR=eclipse.tar.gz
export ECLIPSE_URL=https://archive.eclipse.org/eclipse/downloads/drops4/R-4.30-202312010110/eclipse-SDK-4.30-linux-gtk-x86_64.tar.gz
curl ${ECLIPSE_URL} -o ${ECLIPSE_TAR}
tar -C ${GITHUB_WORKSPACE}/.. -xzf ${ECLIPSE_TAR}

- name: Check Eclipse Format
if: matrix.job == 'lint'
Expand Down
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ benchmark_y1:
allow_failure: true
script:
- ant compile
- rebench --experiment="CI ID $CI_PIPELINE_ID" --branch="$CI_COMMIT_REF_NAME" -c codespeed.conf SOMns-CI m:yuria
- rebench --experiment="CI ID $CI_PIPELINE_ID" --branch="$CI_COMMIT_REF_NAME" -c codespeed.conf SOMns-CI t:yuria
after_script:
- sudo reown-project.sh

Expand All @@ -27,7 +27,7 @@ benchmark_y2:
allow_failure: true
script:
- ant compile
- rebench --experiment="CI ID $CI_PIPELINE_ID" --branch="$CI_COMMIT_REF_NAME" -c codespeed.conf SOMns-CI m:yuria2
- rebench --experiment="CI ID $CI_PIPELINE_ID" --branch="$CI_COMMIT_REF_NAME" -c codespeed.conf SOMns-CI t:yuria2
after_script:
- sudo reown-project.sh

Expand All @@ -36,7 +36,7 @@ benchmark_y3:
allow_failure: true
script:
- ant compile
- rebench --experiment="CI ID $CI_PIPELINE_ID" --branch="$CI_COMMIT_REF_NAME" -c codespeed.conf SOMns-CI m:yuria3
- rebench --experiment="CI ID $CI_PIPELINE_ID" --branch="$CI_COMMIT_REF_NAME" -c codespeed.conf SOMns-CI t:yuria3
after_script:
- sudo reown-project.sh

Expand Down
Loading
Loading