tangled
alpha
login
or
join now
altagos.dev
/
factorio-toolbox
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
workflows: fix missing system libraries
altagos.dev
4 months ago
679d103f
3d6965dc
verified
This commit was signed with the committer's
known signature
.
altagos.dev
SSH Key Fingerprint:
SHA256:UbTjEcCZlc6GzQWLCuDK3D//HESWD2xFPkzue9XMras=
0/1
build.yml
failed
1min 32s
+14
-5
2 changed files
expand all
collapse all
unified
split
.tangled
workflows
build.yml
web.yml
+12
-3
.tangled/workflows/build.yml
···
1
1
when:
2
2
-
- event: ["push", "pull_request"]
3
3
-
branch: ["main"]
2
2
+
- event: ["push", "pull_request"]
3
3
+
branch: ["main", "workflows"]
4
4
5
5
engine: nixery
6
6
7
7
dependencies:
8
8
nixpkgs:
9
9
-
- mise
9
9
+
- pkg-config
10
10
+
- libglvnd
11
11
+
- alsa-lib
12
12
+
- mise
10
13
11
14
steps:
15
15
+
- name: Install extra dependencies
16
16
+
command: |
17
17
+
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
18
18
+
nix-channel --update
19
19
+
nix-env -iA nixpkgs.xorg.libX11
20
20
+
nix-env -iA nixpkgs.xorg.libXcursor
12
21
- name: Setup Zig
13
22
command: |
14
23
mise trust
+2
-2
.tangled/workflows/web.yml
···
1
1
when:
2
2
-
- event: ["push", "pull_request"]
3
3
-
branch: ["main"]
2
2
+
- event: ["push", "pull_request"]
3
3
+
branch: ["main"]
4
4
5
5
engine: nixery
6
6