File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 24
24
- ' **/CMakeLists.txt'
25
25
- ' version.inc'
26
26
- " .github/workflows/build_*.yml"
27
- - ' BuildLinux .sh'
27
+ - ' build_linux .sh'
28
28
- ' build_release_vs2022.bat'
29
29
- ' build_release_macos.sh'
30
30
Original file line number Diff line number Diff line change @@ -103,9 +103,9 @@ jobs:
103
103
run : |
104
104
mkdir -p ${{ github.workspace }}/deps/build
105
105
mkdir -p ${{ github.workspace }}/deps/build/destdir
106
- sudo ./BuildLinux .sh -ur
106
+ sudo ./build_linux .sh -ur
107
107
sudo chown $USER -R ./
108
- ./BuildLinux .sh -dr
108
+ ./build_linux .sh -dr
109
109
cd deps/build
110
110
tar -czvf OrcaSlicer_dep_ubuntu_$(date +"%Y%m%d").tar.gz destdir
111
111
Original file line number Diff line number Diff line change @@ -247,10 +247,10 @@ jobs:
247
247
libgtk-3-dev libgtk-3-dev libmspack-dev libosmesa6-dev libsecret-1-dev libsoup2.4-dev libssl-dev libudev-dev libwayland-dev \
248
248
libwebkit2gtk-${{ env.webkit-ver }}-dev libxkbcommon-dev locales locales-all m4 pkgconf sudo wayland-protocols wget ${{ env.libfuse2-pkg }}
249
249
250
- - name : Install dependencies from BuildLinux .sh
250
+ - name : Install dependencies from build_linux .sh
251
251
if : inputs.os == 'ubuntu-20.04' || inputs.os == 'ubuntu-24.04'
252
252
shell : bash
253
- run : sudo ./BuildLinux .sh -ur
253
+ run : sudo ./build_linux .sh -ur
254
254
255
255
- name : Fix permissions
256
256
if : inputs.os == 'ubuntu-20.04' || inputs.os == 'ubuntu-24.04'
@@ -263,7 +263,7 @@ jobs:
263
263
env :
264
264
ubuntu-ver-str : ${{ (inputs.os == 'ubuntu-24.04' && '_Ubuntu2404') || '' }}
265
265
run : |
266
- ./BuildLinux .sh -isr
266
+ ./build_linux .sh -isr
267
267
mv -n ./build/OrcaSlicer_Linux_V${{ env.ver_pure }}.AppImage ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
268
268
chmod +x ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
269
269
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ while getopts ":ih" opt; do
8
8
i )
9
9
export BUILD_IMAGE=" 1"
10
10
;;
11
- h ) echo " Usage: ./BuildLinuxImage .sh [-i]"
11
+ h ) echo " Usage: ./build_linux_image .sh [-i]"
12
12
echo " -i: Generate Appimage (optional)"
13
13
exit 0
14
14
;;
You can’t perform that action at this time.
0 commit comments