Skip to content

Commit 175d819

Browse files
committed
Updated github/workflows to tt10
1 parent 4682d2f commit 175d819

File tree

4 files changed

+22
-13
lines changed

4 files changed

+22
-13
lines changed

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ on:
66

77
jobs:
88
docs:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- name: Checkout repo
1212
uses: actions/checkout@v4
1313
with:
1414
submodules: recursive
1515

1616
- name: Build docs
17-
uses: TinyTapeout/tt-gds-action/docs@tt09
17+
uses: TinyTapeout/tt-gds-action/docs@tt10

.github/workflows/fpga.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ name: fpga
33
on:
44
push:
55
# Comment out (or remove) the following line to run the FPGA workflow on every push:
6-
# branches: none
6+
branches: none
77
workflow_dispatch:
88

99
jobs:
1010
fpga:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: checkout repo
1414
uses: actions/checkout@v4
1515
with:
1616
submodules: recursive
1717

1818
- name: FPGA bitstream for TT ASIC Sim (ICE40UP5K)
19-
uses: TinyTapeout/tt-gds-action/fpga/ice40up5k@tt09
19+
uses: TinyTapeout/tt-gds-action/fpga/ice40up5k@tt10

.github/workflows/gds.yaml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,42 @@ on:
66

77
jobs:
88
gds:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- name: checkout repo
1212
uses: actions/checkout@v4
1313
with:
1414
submodules: recursive
1515

1616
- name: Build GDS
17-
uses: TinyTapeout/tt-gds-action@tt09
17+
uses: TinyTapeout/tt-gds-action@tt10
1818
with:
1919
flow: openlane2
2020

2121
precheck:
2222
needs: gds
23-
runs-on: ubuntu-latest
23+
runs-on: ubuntu-24.04
2424
steps:
2525
- name: Run Tiny Tapeout Precheck
26-
uses: TinyTapeout/tt-gds-action/precheck@tt09
26+
uses: TinyTapeout/tt-gds-action/precheck@tt10
2727

2828
gl_test:
2929
needs: gds
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-24.04
3131
steps:
3232
- name: checkout repo
3333
uses: actions/checkout@v4
3434
with:
3535
submodules: recursive
3636

3737
- name: GL test
38-
uses: TinyTapeout/tt-gds-action/gl_test@tt09
38+
uses: TinyTapeout/tt-gds-action/gl_test@tt10
39+
40+
viewer:
41+
needs: gds
42+
runs-on: ubuntu-24.04
43+
permissions:
44+
pages: write # to deploy to Pages
45+
id-token: write # to verify the deployment originates from an appropriate source
46+
steps:
47+
- uses: TinyTapeout/tt-gds-action/viewer@tt10

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: test
22
on: [push, workflow_dispatch]
33
jobs:
44
test:
5-
runs-on: ubuntu-latest
5+
runs-on: ubuntu-24.04
66
steps:
77
- name: Checkout repo
88
uses: actions/checkout@v4
@@ -44,4 +44,4 @@ jobs:
4444
name: test-vcd
4545
path: |
4646
test/tb.vcd
47-
test/results.xml
47+
test/results.xml

0 commit comments

Comments
 (0)