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
31 changes: 11 additions & 20 deletions .github/workflows/java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,21 @@ on:
jobs:
tests-java-1_8:
name: Test
runs-on: ubuntu-20.04
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deprecated runner

runs-on: ubuntu-24.04
container: ubuntu:20.04
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These java tests require an old java version, so we still run ubuntu 20.04 in a container

steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
java-version: "11"
distribution: "temurin"
- name: Update apt and install unzip
run: |
apt-get update
apt-get install -y unzip make
shell: bash
- uses: gradle/gradle-build-action@v3
with:
gradle-version: 7.1.1
- name: Run tests
run: make test-java

# sonarqube:
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to comment out, saved in git history.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗑️

# name: SonarQube
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - uses: gradle/gradle-build-action@v3
# with:
# gradle-version: 7.1.1
# - name: Run tests
# run: make test-java
#
# - name: Run sonarqube
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# run: (cd java && gradle sonarqube)
2 changes: 1 addition & 1 deletion .github/workflows/javascript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
coverage:
name: Test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test_validation:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout Sources
uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ on:
- "spec/**"
push:
branches:
- 'v*-release'
- 'starling-v*-release'
- 'libsbp-v*-release'
- "v*-release"
- "starling-v*-release"
- "libsbp-v*-release"
tags:
- 'v*'
- "v*"
paths:
- "spec/**"

jobs:
validation:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout Current Spec
uses: actions/checkout@v4
Expand Down
Loading