Revert "Virtual thread for Network IO" #21
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: Dev Build | |
on: | |
push: | |
branches: | |
- ver/* | |
jobs: | |
dev-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 8 | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-maven- | |
- name: Configure Git | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Github Actions" | |
- name: Patch Beast | |
run: | | |
git submodule update --init --recursive | |
chmod +x ./beast | |
./beast jar | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Beast-JDK8 | |
path: ./Beast-Server/target/beast-1.12.2.jar |