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
ae9ba38e
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 21s
+13
-5
2 changed files
expand all
collapse all
unified
split
.tangled
workflows
build.yml
web.yml
+11
-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
+
- mise
10
10
+
- libglvnd
11
11
+
- alsa-lib
10
12
11
13
steps:
14
14
+
- name: Install extra dependencies
15
15
+
command: |
16
16
+
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
17
17
+
nix-channel --update
18
18
+
nix-env -iA nixpkgs.xorg.libX11
19
19
+
nix-env -iA nixpkgs.xorg.libXcursor
12
20
- name: Setup Zig
13
21
command: |
14
22
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