mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-10-03 16:51:30 +00:00
UltimMC: Fix Actions
This commit is contained in:
7
.github/workflows/main.yml
vendored
7
.github/workflows/main.yml
vendored
@@ -116,7 +116,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Setup CMake
|
- name: Setup CMake
|
||||||
run: |
|
run: |
|
||||||
curl -L https://github.com/Kitware/CMake/releases/download/v3.29.0-rc2/cmake-3.29.0-rc2-windows-i386.zip -o cmake.zip
|
curl -L https://github.com/Kitware/CMake/releases/download/v3.29.3/cmake-3.29.3-windows-i386.zip -o cmake.zip
|
||||||
unzip cmake.zip
|
unzip cmake.zip
|
||||||
|
|
||||||
- name: Setup JDK
|
- name: Setup JDK
|
||||||
@@ -244,6 +244,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
|
export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
|
||||||
cmake \
|
cmake \
|
||||||
-DCMAKE_C_COMPILER=/usr/bin/clang \
|
-DCMAKE_C_COMPILER=/usr/bin/clang \
|
||||||
-DCMAKE_CXX_COMPILER=/usr/bin/clang++ \
|
-DCMAKE_CXX_COMPILER=/usr/bin/clang++ \
|
||||||
@@ -265,18 +266,20 @@ jobs:
|
|||||||
- name: Compile
|
- name: Compile
|
||||||
run: |
|
run: |
|
||||||
cd build
|
cd build
|
||||||
|
export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
|
||||||
make -j$(sysctl -n hw.logicalcpu)
|
make -j$(sysctl -n hw.logicalcpu)
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: |
|
run: |
|
||||||
cd build
|
cd build
|
||||||
|
export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
|
||||||
make test
|
make test
|
||||||
cmake -E remove_directory "/Users/runner/work/UltimMC/build/dist"
|
cmake -E remove_directory "/Users/runner/work/UltimMC/build/dist"
|
||||||
|
|
||||||
- name: Install
|
- name: Install
|
||||||
run: |
|
run: |
|
||||||
brew remove --ignore-dependencies -f glib zstd pcre2 glib gettext jpeg-turbo freetype libpng
|
|
||||||
cd build
|
cd build
|
||||||
|
export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
|
||||||
make install
|
make install
|
||||||
chmod +x /Users/runner/work/UltimMC/build/dist/UltimMC.app/Contents/MacOS/UltimMC
|
chmod +x /Users/runner/work/UltimMC/build/dist/UltimMC.app/Contents/MacOS/UltimMC
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user