Merge pull request #7 from waycrate/dependabot/github_actions/crate-c… #17
This file contains hidden or 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: build lib | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: "build lib" | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Packages | |
run: | | |
pacman -Syu --noconfirm base-devel git nasm jq ninja cpio wget unzip cmake | |
pacman -Syu --noconfirm qt6-wayland | |
- name: Build | |
run: | | |
cmake -B build | |
cmake --build build |