+18
-8
.tangled/workflows/build-publish.yaml
+18
-8
.tangled/workflows/build-publish.yaml
···
17
17
nixpkgs:
18
18
- cargo
19
19
- dotnet-sdk
20
+
- mono
20
21
- wget
21
22
- unzip
22
23
- git
23
24
- gcc
24
25
25
26
steps:
27
+
# SETUP passwd
28
+
- name: "Create /etc/passwd"
29
+
command: "echo root:x:0:0::$PWD/home:/usr/bin/bash > /etc/passwd"
30
+
- name: "Create fake home"
31
+
command: "mkdir $PWD/home"
32
+
26
33
# GODOTSTEAM
27
34
- name: "Get GodotSteam"
28
-
command: "wget https://codeberg.org/godotsteam/godotsteam/releases/download/v3.21/linux64-g352-s158-gs321.zip -O godotsteam.zip"
35
+
command: "wget -nv https://codeberg.org/godotsteam/godotsteam/releases/download/v3.21/linux64-g352-s158-gs321.zip -O godotsteam.zip"
29
36
- name: "Unzip GodotSteam"
30
37
command: "unzip godotsteam.zip -d godotsteam"
31
38
- name: "Make GodotSteam executable"
···
33
40
34
41
# GDWEAVE
35
42
- name: "Get GDWeave"
36
-
command: "wget https://github.com/NotNite/GDWeave/releases/download/v2.0.14/GDWeave.zip -O gdweave.zip"
43
+
command: "wget -nv https://github.com/NotNite/GDWeave/releases/download/v2.0.14/GDWeave.zip -O gdweave.zip"
37
44
- name: "Unzip GDWeave"
38
45
command: "unzip gdweave.zip"
39
46
47
+
# Setup home dir
48
+
49
+
40
50
# MANIFESTATION
41
-
# - name: "Install Manifestation"
42
-
# command: "cargo install --git https://github.com/NotNite/manifestation.git"
51
+
- name: "Install Manifestation"
52
+
command: "cargo install --git https://github.com/NotNite/manifestation.git"
43
53
44
54
- name: "Create Manifestation config dir"
45
55
command: "mkdir manifestation_config"
46
56
47
57
- name: "Add GodotSteam to manifestation config"
48
-
command: "echo godot_path = \"${PWD}/godotsteam/linux-352-editor.64\" > manifestation_config/config.toml"
58
+
command: "echo godot_path = \\\"${PWD}/godotsteam/linux-352-editor.64\\\" > manifestation_config/config.toml"
49
59
- name: "Add GDWeave to manifestation config"
50
-
command: "echo gdweave_path = \"${PWD}/GDWeave\" >> manifestation_config/config.toml"
60
+
command: "echo gdweave_path = \\\"${PWD}/GDWeave\\\" >> manifestation_config/config.toml"
51
61
52
62
- name: "LOG"
53
63
command: "cat manifestation_config/config.toml"
54
64
55
-
# - name: "Run manifestation"
56
-
# command: "MANIFESTATION_CONFIG_DIR=$PWD/manifestation_config ~/.cargo/bin/manifestation ./manifestation.toml"
65
+
- name: "Run manifestation"
66
+
command: "MANIFESTATION_CONFIG_DIR=$PWD/manifestation_config ~/.cargo/bin/manifestation ./manifestation.toml"