Merge dev for 0.41.2 #32
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: Build hyprland-virtual-desktops | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
gcc_main: | |
name: 'Build hyprland-virtual-desktops (main)' | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux | |
steps: | |
- name: Checkout repository action | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: .github/actions | |
- name: Setup base on main | |
uses: ./.github/actions/setup_base | |
if: github.ref == 'refs/heads/main'|| github.base_ref == 'main' | |
with: | |
INSTALL_XORG_PKGS: true | |
branch: 'v0.41.1' | |
hyprwayland: 'v0.3.10' | |
- name: Setup base on dev | |
uses: ./.github/actions/setup_base | |
if: github.ref == 'refs/heads/dev'|| github.base_ref == 'dev' | |
with: | |
INSTALL_XORG_PKGS: true | |
branch: 'main' | |
- name: Compile Hyprland | |
shell: bash | |
run: | | |
cd Hyprland | |
make all | |
make install | |
- name: Build hyprland-virtual-desktops | |
env: | |
PKG_CONFIG_PATH: "/usr/local/share/pkgconfig/" | |
run: | | |
make all | |