-
-
Notifications
You must be signed in to change notification settings - Fork 964
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into outer-outer-inner
- Loading branch information
Showing
103 changed files
with
5,007 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,6 +130,17 @@ jobs: | |
name: OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }} | ||
path: ${{ github.workspace }}/OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg | ||
|
||
- name: Deploy Mac release | ||
if: github.ref == 'refs/heads/main' && inputs.os == 'macos-12' | ||
uses: WebFreak001/[email protected] | ||
with: | ||
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label} | ||
release_id: 137995723 | ||
asset_path: ${{ github.workspace }}/OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg | ||
asset_name: OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg | ||
asset_content_type: application/octet-stream | ||
max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted | ||
|
||
# Windows | ||
- name: setup MSVC | ||
if: inputs.os == 'windows-latest' | ||
|
@@ -185,6 +196,28 @@ jobs: | |
name: PDB | ||
path: ${{ github.workspace }}/build/src/Release/Debug_PDB_${{ env.ver }}_for_developers_only.7z | ||
|
||
- name: Deploy Windows release portable | ||
if: github.ref == 'refs/heads/main' && inputs.os == 'windows-latest' | ||
uses: WebFreak001/[email protected] | ||
with: | ||
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label} | ||
release_id: 137995723 | ||
asset_path: ${{ github.workspace }}/build/OrcaSlicer_Windows_${{ env.ver }}_portable.zip | ||
asset_name: OrcaSlicer_Windows_${{ env.ver }}_portable.zip | ||
asset_content_type: application/x-zip-compressed | ||
max_releases: 1 | ||
|
||
- name: Deploy Windows release installer | ||
if: github.ref == 'refs/heads/main' && inputs.os == 'windows-latest' | ||
uses: WebFreak001/[email protected] | ||
with: | ||
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label} | ||
release_id: 137995723 | ||
asset_path: ${{ github.workspace }}/build/OrcaSlicer_Windows_Installer_${{ env.ver }}.exe | ||
asset_name: OrcaSlicer_Windows_Installer_${{ env.ver }}.exe | ||
asset_content_type: application/x-msdownload | ||
max_releases: 1 | ||
|
||
# Ubuntu | ||
- name: Install dependencies | ||
if: inputs.os == 'ubuntu-20.04' | ||
|
@@ -211,11 +244,22 @@ jobs: | |
shell: bash | ||
run: | | ||
./BuildLinux.sh -isr | ||
chmod +x ./build/OrcaSlicer_ubu64.AppImage | ||
chmod +x ./build/OrcaSlicer_Linux_${{ env.ver }}.AppImage | ||
- name: Upload artifacts Ubuntu | ||
if: inputs.os == 'ubuntu-20.04' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: OrcaSlicer_Linux_${{ env.ver }} | ||
path: './build/OrcaSlicer_ubu64.AppImage' | ||
path: './build/OrcaSlicer_Linux_${{ env.ver }}.AppImage' | ||
|
||
- name: Deploy Ubuntu release | ||
if: github.ref == 'refs/heads/main' && inputs.os == 'ubuntu-20.04' | ||
uses: WebFreak001/[email protected] | ||
with: | ||
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label} | ||
release_id: 137995723 | ||
asset_path: ./build/OrcaSlicer_Linux_${{ env.ver }}.AppImage | ||
asset_name: OrcaSlicer_Linux_${{ env.ver }}.AppImage | ||
asset_content_type: application/octet-stream | ||
max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Build | ||
Build.bat | ||
/build*/ | ||
deps/build | ||
deps/build* | ||
MYMETA.json | ||
MYMETA.yml | ||
_build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,50 @@ | ||
set WP=%CD% | ||
|
||
set debug=OFF | ||
set debuginfo=OFF | ||
if "%1"=="debug" set debug=ON | ||
if "%2"=="debug" set debug=ON | ||
if "%1"=="debuginfo" set debuginfo=ON | ||
if "%2"=="debuginfo" set debuginfo=ON | ||
if "%debug%"=="ON" ( | ||
set build_type=Debug | ||
set build_dir=build-dbg | ||
) else ( | ||
if "%debuginfo%"=="ON" ( | ||
set build_type=RelWithDebInfo | ||
set build_dir=build-dbginfo | ||
) else ( | ||
set build_type=Release | ||
set build_dir=build | ||
) | ||
) | ||
echo build type set to %build_type% | ||
|
||
cd deps | ||
mkdir build | ||
cd build | ||
mkdir %build_dir% | ||
cd %build_dir% | ||
set DEPS=%CD%/OrcaSlicer_dep | ||
if "%1"=="slicer" ( | ||
GOTO :slicer | ||
) | ||
echo "building deps.." | ||
cmake ../ -G "Visual Studio 16 2019" -DDESTDIR="%CD%/OrcaSlicer_dep" -DCMAKE_BUILD_TYPE=Release | ||
cmake --build . --config Release --target deps -- -m | ||
|
||
echo cmake ../ -G "Visual Studio 16 2019 -A x64 -DDESTDIR="%CD%/OrcaSlicer_dep" -DCMAKE_BUILD_TYPE=%build_type% -DDEP_DEBUG=%debug% -DORCA_INCLUDE_DEBUG_INFO=%debuginfo% | ||
cmake ../ -G "Visual Studio 16 2019 -A x64 -DDESTDIR="%CD%/OrcaSlicer_dep" -DCMAKE_BUILD_TYPE=%build_type% -DDEP_DEBUG=%debug% -DORCA_INCLUDE_DEBUG_INFO=%debuginfo% | ||
cmake --build . --config %build_type% --target deps -- -m | ||
|
||
if "%1"=="deps" exit /b 0 | ||
|
||
:slicer | ||
echo "building Orca Slicer..." | ||
cd %WP% | ||
mkdir build | ||
cd build | ||
mkdir %build_dir% | ||
cd %build_dir% | ||
|
||
cmake .. -G "Visual Studio 16 2019" -DBBL_RELEASE_TO_PUBLIC=1 -DCMAKE_PREFIX_PATH="%DEPS%/usr/local" -DCMAKE_INSTALL_PREFIX="./OrcaSlicer" -DCMAKE_BUILD_TYPE=Release -DWIN10SDK_PATH="C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0" | ||
cmake --build . --config Release --target ALL_BUILD -- -m | ||
echo cmake .. -G "Visual Studio 16 2019 -A x64 -DBBL_RELEASE_TO_PUBLIC=1 -DCMAKE_PREFIX_PATH="%DEPS%/usr/local" -DCMAKE_INSTALL_PREFIX="./OrcaSlicer" -DCMAKE_BUILD_TYPE=%build_type% | ||
cmake .. -G "Visual Studio 16 2019 -A x64 -DBBL_RELEASE_TO_PUBLIC=1 -DCMAKE_PREFIX_PATH="%DEPS%/usr/local" -DCMAKE_INSTALL_PREFIX="./OrcaSlicer" -DCMAKE_BUILD_TYPE=%build_type% -DWIN10SDK_PATH="C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0" | ||
cmake --build . --config %build_type% --target ALL_BUILD -- -m | ||
cd .. | ||
call run_gettext.bat | ||
cd build | ||
cmake --build . --target install --config Release | ||
cd %build_dir% | ||
cmake --build . --target install --config %build_type% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.