Skip to content

Add emulate-im-popups feature #55

Add emulate-im-popups feature

Add emulate-im-popups feature #55

Workflow file for this run

{
"name": "CI",
"on": {
"push": { "branches": ["master"] },
"pull_request": { "branches": ["master"] },
"workflow_dispatch": {}
},
"jobs": {
"build-ubuntu": {
"runs-on": "ubuntu-latest",
"steps": [
{ "uses": "actions/checkout@v2" },
{
"name": "Install dependencies",
"run": "sudo apt-get install ninja-build scdoc libwayland-dev wayland-protocols libxkbcommon-dev libanthy-dev libcairo2-dev libpango1.0-dev"
},
{ "uses": "BSFishy/[email protected]", "with": { "meson-version": "0.59.0", "action": "test" } }
]
},
"build-ubuntu-nix": {
"runs-on": "ubuntu-latest",
"steps": [
{ "uses": "actions/checkout@v2" },
{
"uses": "cachix/install-nix-action@v22",
"with": { "extra_nix_config": "experimental-features = nix-command flakes" }
},
{ "name": "Build anthywl", "run": "nix build -L .#packages.x86_64-linux.anthywl"}
]
}
}
}