mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-25 04:44:59 +00:00
91 lines
2.9 KiB
YAML
91 lines
2.9 KiB
YAML
name: MultiMC5-Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
- stable
|
|
- CI
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- releases
|
|
- CI
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [windows-latest]
|
|
|
|
steps:
|
|
- name: Context
|
|
env:
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
run: echo "$GITHUB_CONTEXT"
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Cache Qt Installed
|
|
uses: actions/cache@v2.1.5
|
|
id: qt-cached
|
|
with:
|
|
# A list of files, directories, and wildcard patterns to cache and restore
|
|
path: "C:/Users/runneradmin/Qt"
|
|
# An explicit key for restoring and saving the cache
|
|
key: ${{ runner.os }}-qt56-installed
|
|
|
|
- name: Cache Qt Installer
|
|
uses: actions/cache@v2.1.5
|
|
if: steps.qt-cached.outputs.cache-hit != 'true'
|
|
id: installer-cached
|
|
with:
|
|
# A list of files, directories, and wildcard patterns to cache and restore
|
|
path: "installer.exe"
|
|
# An explicit key for restoring and saving the cache
|
|
key: ${{ runner.os }}-qt56-installer
|
|
|
|
- name: Creates QtAccount File
|
|
uses: DamianReeves/write-file-action@v1.0
|
|
if: steps.qt-cached.outputs.cache-hit != 'true'
|
|
with:
|
|
# The path to the file to write
|
|
path: "%APPDATA%\\Qt"
|
|
# The contents of the file
|
|
contents: ${{ secrets.QTACCOUNT }}
|
|
|
|
- name: Download Qt Installer
|
|
if: steps.installer-cached.outputs.cache-hit != 'true' && steps.qt-cached.outputs.cache-hit != 'true'
|
|
run: |
|
|
curl https://download.qt.io/new_archive/qt/5.6/5.6.3/qt-opensource-windows-x86-mingw492-5.6.3.exe --output installer.exe
|
|
|
|
- name: Download Qt non-Interactive Script
|
|
run: |
|
|
curl https://gist.githubusercontent.com/PibePlayer/cf6bd0a9f7e4d51e3e618ceedfba4b94/raw/198ecd6e3a090c75a96a03a4582d8a41a0f0be83/qt-installer-noninteractive.qs --output nonInteractive.qs
|
|
|
|
- name: Install Qt 5.6.3
|
|
if: steps.qt-cached.outputs.cache-hit != 'true'
|
|
shell: cmd
|
|
run: |
|
|
installer.exe -v --script nonInteractive.qs --silent
|
|
|
|
- name: Setup CMake
|
|
run: |
|
|
curl https://github.com/Kitware/CMake/releases/download/v3.20.2/cmake-3.20.2-windows-i386.msi -o cmake.msi
|
|
./cmake.msi /S
|
|
|
|
- name: Setup JDK
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
distribution: 'zulu' # See 'Supported distributions' for available options
|
|
java-version: '8'
|
|
architecture: x86
|
|
|
|
- name: Setup zlib
|
|
run: |
|
|
curl https://razaoinfo.dl.sourceforge.net/project/gnuwin32/zlib/1.2.3/zlib-1.2.3-bin.zip -o zlib.zip
|
|
unzip zlib.zip
|