update carlaviz to support carla 0.9.15 #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CarlaViz CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARLAVIZ_CI_VERSION_OVERRIDE: "0.0.1" | |
jobs: | |
clang-format-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
# git checkout | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Copy .clang-format file | |
run: cp ./backend/.clang-format . | |
# clang format check | |
- name: Run clang-format style check | |
uses: jidicula/[email protected] | |
with: | |
clang-format-version: '14' | |
check-path: backend | |
build-backend: | |
strategy: | |
matrix: | |
os: [ubuntu-22.04, windows-2022] | |
profile: [gcc11, clang14, msvc17] | |
build_type: [Debug, Release] | |
exclude: | |
- os: windows-2022 | |
profile: gcc11 | |
- os: windows-2022 | |
profile: clang14 | |
- os: ubuntu-22.04 | |
profile: msvc17 | |
runs-on: ${{ matrix.os }} | |
steps: | |
# git checkout | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# dependencies | |
- name: Install cmake and compilers | |
if: matrix.os == 'ubuntu-22.04' | |
run: sudo apt install -y cmake g++-11 clang-14 libc++-14-dev | |
- name: Install conan and coverage tool | |
run: pip install conan==1.55.0 && conan user | |
- name: Add conan registry | |
run: conan remote add gitlab https://gitlab.com/api/v4/projects/44861904/packages/conan | |
- name: Copy conan profiles | |
shell: bash | |
run: bash misc/cicd/conan/copy_conan_profiles.sh ${HOME}/ | |
# install packages and build | |
- name: Install | |
run: cd backend && conan install . --build=missing -pr ${HOME}/${{ matrix.profile }} -s build_type=${{ matrix.build_type }} | |
- name: Build | |
run: cd backend && conan build . | |
build-frontend: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
uses: borales/actions-yarn@v5 | |
with: | |
cmd: install | |
dir: "frontend" | |
- name: Build | |
uses: borales/actions-yarn@v5 | |
with: | |
cmd: build | |
dir: "frontend" | |
build-docker: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Docker image | |
run: docker build -t carlaviz:test . |