build: update submodule "filmmaker" #31
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: Check Linux Build | |
on: | |
push: | |
branches-ignore: | |
- master | |
concurrency: | |
group: check-build-lin-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build - ${{ matrix.config.os }} | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- os: ubuntu-22.04 | |
name: "Ubuntu GCC-11" | |
artifact: "ubuntu_gcc.7z" | |
build_type: "RelWithDebInfo" | |
cc: "clang-14" | |
cxx: "clang++-14" | |
archiver: "7z a" | |
generators: "Unix Makefiles" | |
build_dir: 'build' | |
steps: | |
- name: Setup Pragma | |
uses: Silverlan/pragma/github_actions/setup@master | |
with: | |
branch: ${{ github.ref_name }} | |
clone_url: "https://github.com/${{ github.repository }}.git" | |
- name: Build Pragma | |
uses: ./pragma/github_actions/build | |
id: build-pragma | |
with: | |
build-args: "--with-pfm --with-all-pfm-modules --with-vr --with-lua-debugger=0" | |
- name: Handle Error | |
uses: Silverlan/common_actions/action_handle_error@main | |
if: failure() |