fix: ci #252
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: Setup and Build | |
on: [ push, pull_request ] | |
jobs: | |
setup-selenium: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- windows-latest | |
- macos-latest-large | |
- ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- name: chmod -R 777 * | |
run: chmod -R 777 * | |
- name: Assemble | |
run: ./gradlew assemble --scan | |
- name: SeleniumToolKtTest | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
run: ./gradlew test --tests "xyz.cssxsh.selenium.SeleniumToolKtTest" --scan --info | |
- name: SeleniumDevToolsKtTest | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
run: ./gradlew test --tests "xyz.cssxsh.selenium.SeleniumDevToolsKtTest" --scan --info | |
- name: EChartsTest | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
run: ./gradlew test --tests "xyz.cssxsh.selenium.EChartsTest" --scan --info | |
build: | |
needs: [setup-selenium] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- name: chmod -R 777 * | |
run: chmod -R 777 * | |
- name: Build Plugin | |
run: ./gradlew buildPlugin | |
- name: Upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-${{ github.run_id }} | |
path: build/mirai/* |