Unified implementations #5047
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
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 |