mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-07 16:40:43 +08:00
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: Build
|
|
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
build-mirai:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: # mirai build requires a minimum system memory of 8 GB, while Windows and Ubuntu VMs provides only 7 GB. See https://github.com/mamoe/mirai/actions/runs/1608172113 for details.
|
|
# - windows-latest
|
|
- macos-11
|
|
# - ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Checkout submodules
|
|
run: git submodule update --init --recursive
|
|
|
|
- name: Setup JDK 11
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
distribution: 'adopt'
|
|
java-version: '11'
|
|
|
|
- name: chmod -R 777 *
|
|
run: chmod -R 777 *
|
|
|
|
- name: Init gradle project
|
|
run: ./gradlew clean --scan
|
|
|
|
- name: Build all
|
|
run: ./gradlew assemble --scan
|
|
|
|
- name: All Tests
|
|
run: >
|
|
./gradlew check --scan
|
|
"-Dmirai.network.show.all.components=true"
|
|
"-Dkotlinx.coroutines.debug=on"
|
|
"-Dmirai.network.show.packet.details=true"
|
|
|
|
- name: Ensure KDoc valid
|
|
run: ./gradlew dokkaHtmlMultiModule
|
|
|
|
- name: Upload build artifacts
|
|
uses: ./.github/actions/upload-build-artifacts
|