Skip to content

Commit

Permalink
Fix Ubuntu version and sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
schoeberl committed Nov 5, 2024
1 parent d9e3223 commit 284f039
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 21 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ on:

jobs:
docs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up JDK 11
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: 'sbt'
distribution: temurin
java-version: 17
cache: sbt
- uses: sbt/setup-sbt@v1
- name: generate Verilog
run: sbt run

Expand Down
24 changes: 13 additions & 11 deletions .github/workflows/gds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ on:

jobs:
gds:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up JDK 11
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: 'sbt'
distribution: temurin
java-version: 17
cache: sbt
- uses: sbt/setup-sbt@v1
- name: generate Verilog
run: sbt run
- name: Build GDS
Expand All @@ -34,26 +35,27 @@ jobs:

gl_test:
needs: gds
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up JDK 11
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: 'sbt'
distribution: temurin
java-version: 17
cache: sbt
- uses: sbt/setup-sbt@v1
- name: generate Verilog
run: sbt run
- name: GL test
uses: TinyTapeout/tt-gds-action/gl_test@tt09

viewer:
needs: gds
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: test
on: [push, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand All @@ -23,12 +23,13 @@ jobs:
shell: bash
run: pip install -r test/requirements.txt

- name: Set up JDK 11
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: 'sbt'
distribution: temurin
java-version: 17
cache: sbt
- uses: sbt/setup-sbt@v1
- name: generate Verilog
run: sbt run

Expand Down

0 comments on commit 284f039

Please sign in to comment.