-
Notifications
You must be signed in to change notification settings - Fork 2
220 lines (173 loc) · 6.24 KB
/
cmake.yml
File metadata and controls
220 lines (173 loc) · 6.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
name: CMake CI (Test customfetch)
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-ubuntu_22-04:
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Install Packages
run: |
sudo apt-get purge firefox # Slows down the installation alot, fuck snap
sudo apt-get update && sudo apt upgrade -y
sudo apt-get install neofetch tree build-essential cmake g++-11 libwayland-dev gettext libdconf-dev libglib2.0-dev libarchive-tools -y
- name: Clean
run: make distclean
- name: Compile and install
run: |
export CXX=x86_64-linux-gnu-g++-11
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr
make
sudo make install
- name: Test neofetch
run: neofetch
- name: Check system values
run: |
ls -l /sys/devices/virtual/dmi/id/ /sys/class/dmi/id/
grep -Eri "virtual" /sys/class/dmi/id/ || true
cat /sys/devices/virtual/dmi/id/board_name /sys/devices/virtual/dmi/id/board_vendor /sys/devices/virtual/dmi/id/board_version
tree /sys/devices/system/cpu/cpu0/
printf "/etc/os-release\n" && cat /etc/os-release
printf "getting 0x5353 hexcode\n" && grep -nri "5353" /sys/class/ || true
- name: Test customfetch
run: customfetch --wrap-lines
- name: Upload to github artifacts
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: customfetch
path: ./build/customfetch
build-ubuntu-22_04-GUI:
runs-on: ubuntu-22.04
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Install Packages
run: |
sudo apt-get purge firefox # Slows down the installation alot, fuck snap
sudo apt-get update && sudo apt upgrade -y
sudo apt-get install neofetch tree build-essential cmake g++-11 libwayland-dev gettext libgtk-3-dev pkg-config libdconf-dev libglib2.0-dev libgtkmm-3.0-dev -y
- name: Clean
run: make distclean
- name: Compile and install
run: |
export CXX=x86_64-linux-gnu-g++-11
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug -DGUI_APP=1 -DCMAKE_INSTALL_PREFIX=/usr
make
sudo make install
- name: Test neofetch
run: neofetch
- name: Test customfetch
run: customfetch-gui --version
- name: Upload to github artifacts
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: customfetch-gui
path: ./build/customfetch-gui
build_Arch:
runs-on: ubuntu-latest
permissions:
contents: read
container:
image: archlinux
steps:
- uses: actions/checkout@v4
- name: Install the packages
run: pacman -Syyu git sudo binutils cmake gdb base-devel fakeroot pkgconf tree fastfetch --noconfirm --needed
- name: get /etc/sudoers
run: |
sed -i "s#root ALL=(ALL:ALL) ALL#root ALL=(ALL:ALL) NOPASSWD: ALL\nnobody ALL=(ALL:ALL) NOPASSWD: ALL#g" /etc/sudoers
cat /etc/sudoers
- name: get /etc/makepkg.conf
run: |
sed -i "s#purge debug lto#purge !debug lto#" /etc/makepkg.conf
cat /etc/makepkg.conf
- name: Clean
run: make distclean
- name: Compile and install
run: |
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr
make
make install
- name: Test fastfetch
run: fastfetch
- name: Check system values
run: |
ls -l /sys/devices/virtual/dmi/id/ /sys/class/dmi/id/
grep -Eri "virtual" /sys/class/dmi/id/ || true
cat /sys/devices/virtual/dmi/id/board_name /sys/devices/virtual/dmi/id/board_vendor /sys/devices/virtual/dmi/id/board_version
tree /sys/devices/system/cpu/cpu0/
printf "/etc/os-release\n" && cat /etc/os-release
- name: Test customfetch
run: customfetch --wrap-lines
build-macos:
runs-on: macos-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Install the packages
run: HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install --overwrite fastfetch neofetch pkg-config tree llvm@19
- name: uname -a && clang++ --version
run: uname -a && echo "\n" && $(brew --prefix llvm@19)/bin/clang++ --version
- name: Clean
run: make distclean
- name: Compile and install
run: |
export CXX=$(brew --prefix llvm@19)/bin/clang++
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug
make
- name: Test neofetch
run: neofetch
- name: Test fastfetch
run: fastfetch
- name: Test customfetch
run: ./build/customfetch -D assets
- name: Upload to github artifacts
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: customfetch-macos
path: ./build/customfetch
build-macos-GUI:
runs-on: macos-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Install the packages
run: HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install --overwrite fastfetch neofetch tree pkg-config gtkmm3 llvm@19
- name: uname -a && clang++ --version
run: uname -a && echo "\n" && $(brew --prefix llvm@19)/bin/clang++ --version
- name: Clean
run: make distclean
- name: Compile and install
run: |
export CXX=$(brew --prefix llvm@19)/bin/clang++
export PKG_CONFIG_PATH="$(brew --prefix)/lib/pkgconfig:$(brew --prefix)/opt/gtkmm3/lib/pkgconfig:$(brew --prefix)/opt/gtk+3/lib/pkgconfig"
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug -DGUI_APP=1 -DCMAKE_INSTALL_PREFIX=/usr
make
- name: Test neofetch
run: neofetch
- name: Test fastfetch
run: fastfetch
- name: Test customfetch
run: ./build/customfetch-gui --version
- name: Upload to github artifacts
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: customfetch-macos-gui
path: ./build/customfetch-gui