-
Notifications
You must be signed in to change notification settings - Fork 97
Remove deprecated ubuntu-20.04 runners [OI-3101] #1490
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,30 +14,21 @@ on: | |
| jobs: | ||
| tests-java-1_8: | ||
| name: Test | ||
| runs-on: ubuntu-20.04 | ||
| runs-on: ubuntu-24.04 | ||
| container: ubuntu:20.04 | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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: | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need to comment out, saved in git history.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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) | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deprecated runner