Skip to content

fixed last ChannelLayout issue #46

fixed last ChannelLayout issue

fixed last ChannelLayout issue #46

Workflow file for this run

name: CI
run-name: CI on ${{ github.ref }} on ${{ github.sha }}
on:
push:
branches:
- main
jobs:
Build-And-test:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
with:
submodules: 'true'

Check failure on line 14 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 14
- name: install ffmpeg
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: ffmpeg
version: 1.0
- run: mkdir build
- run: cd build
- name: Run Cmake Config step
run: cmake -DCMAKE_BUILD_TYPE=Release ../ray-tracing
- name: Run build
run: cmake --build . --parallel 2
- name: Run test
run: ./tools/test/tests
- name: Run benchmark
run: ./tools/benchmark/benchmarks