Skip to content
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/haskell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down
21 changes: 1 addition & 20 deletions .github/workflows/java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,11 @@ on:
jobs:
tests-java-1_8:
name: Test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: gradle/gradle-build-action@v3
with:
gradle-version: 7.1.1
- name: Run tests
run: make test-java

# sonarqube:
# 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
Loading