this repo has no description

workflows: fix missing system libraries

altagos.dev 63c657ef 3d6965dc

verified
+16 -5
+14 -3
.tangled/workflows/build.yml
··· 1 when: 2 - - event: ["push", "pull_request"] 3 - branch: ["main"] 4 5 engine: nixery 6 7 dependencies: 8 nixpkgs: 9 - - mise 10 11 steps: 12 - name: Setup Zig 13 command: | 14 mise trust 15 mise exec zig -- zig version 16 - name: Run Tests 17 command: | 18 mise exec zig -- zig build test --summary all 19 - name: Build ReleaseSafe 20 command: |
··· 1 when: 2 + - event: ["push", "pull_request"] 3 + branch: ["main", "workflows"] 4 5 engine: nixery 6 7 dependencies: 8 nixpkgs: 9 + - libglvnd 10 + - alsa-lib 11 + - mise 12 13 steps: 14 + - name: Install extra dependencies 15 + command: | 16 + nix-channel --add https://nixos.org/channels/nixpkgs-unstable 17 + nix-channel --update 18 + nix-env --install -A nixpkgs.pkg-config 19 + nix-env --install -A nixpkgs.xorg.libX11 nixpkgs.xorg.libXcursor nixpkgs.xorg.libXi 20 + export LD_LIBRARY_PATH=$(nix eval --raw nixpkgs.xorg.libX11)/lib:$LD_LIBRARY_PATH 21 + ls -la /lib 22 - name: Setup Zig 23 command: | 24 mise trust 25 mise exec zig -- zig version 26 - name: Run Tests 27 command: | 28 + ls -la /lib 29 mise exec zig -- zig build test --summary all 30 - name: Build ReleaseSafe 31 command: |
+2 -2
.tangled/workflows/web.yml
··· 1 when: 2 - - event: ["push", "pull_request"] 3 - branch: ["main"] 4 5 engine: nixery 6
··· 1 when: 2 + - event: ["push", "pull_request"] 3 + branch: ["main"] 4 5 engine: nixery 6