-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (41 loc) · 1.09 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Build (linux)
on: [push]
jobs:
build-python:
name: Build the python package
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- run: |
./python/ci/linux/create_venv.sh
./python/ci/linux/install_dependencies.sh
- name: build
run: |
./python/ci/linux/build_python_package.sh
build-typescript:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./typescript
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"
cache-dependency-path: "./typescript/package-lock.json"
- uses: arduino/setup-protoc@v3
with:
version: "25.2"
- name: Build TypeScript artifacts
run: |
npm ci
npm run proto