Skip to content

👷 scx: refactor flags/modes #160

👷 scx: refactor flags/modes

👷 scx: refactor flags/modes #160

Workflow file for this run

name: Build
on:
push:
branches:
- develop
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
env:
BUILD_TYPE: Debug
CTEST_OUTPUT_ON_FAILURE: 1
jobs:
build:
name: Build
runs-on: ubuntu-latest
container: archlinux:base-devel
steps:
- uses: actions/checkout@v4
- name: install deps
run: |
pacman -Syu --noconfirm cmake pkg-config ninja clang rust mold llvm libc++ qt6-base qt6-tools polkit-qt6 python git
shell: bash
- name: Configure CMake
run: |
export AR=llvm-ar
export CC=clang
export CXX=clang++
export NM=llvm-nm
export RANLIB=llvm-ranlib
./configure.sh -t=Debug -p=${{github.workspace}}/build --use_clang
shell: bash
- name: Build
run: |
./build.sh
shell: bash