Skip to content

Commit ff404b8

Browse files
committed
Fix 24.04 build
Signed-off-by: Erik Jaegervall <[email protected]>
1 parent 730cf7e commit ff404b8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/buildcheck.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,22 @@ on:
1414
required: false
1515
type: string
1616

17+
18+
env:
19+
PYTHON_VERSION: "3.10.6" # keep in sync with vss-tools
20+
# Note: Currently cyclonedds does not support 3.11
21+
1722
jobs:
1823
buildtest:
1924
name: Build Test
2025
runs-on: ubuntu-latest
2126

2227
steps:
2328
- uses: actions/checkout@v4
29+
- uses: actions/setup-python@v5
30+
with:
31+
python-version: ${{ env.PYTHON_VERSION }}
32+
cache: pip
2433

2534
- name: Install vss-tools dependencies
2635
run: |

0 commit comments

Comments
 (0)