Skip to content

removed unneeded comment in shader #192

removed unneeded comment in shader

removed unneeded comment in shader #192

Workflow file for this run

name: Linux Build
on:
push:
branches:
- "*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
build_type: [Release, Debug]
c_compiler: [clang]
include:
- os: ubuntu-latest
c_compiler: clang
cpp_compiler: clang++
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up python for SPIRV-Tools
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Run the Python dependency script in shaderc
run: python ${{github.workspace}}/extern/shaderc/utils/git-sync-deps
- name: Install the Vulkan SDK
uses: humbletim/install-vulkan-sdk@v1.2
with:
version: 1.4.309.0
cache: true
- name: Set reusable strings for CMake commands
id: strings
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Configure CMake
run: >
cmake -G Ninja -B ${{steps.strings.outputs.build-output-dir}}
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-S ${{ github.workspace }}
- name: Build CMake
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} -j 4