Add JNI Call for getBuildoutAreaRect for buildout_utility.java #12
Workflow file for this run
This file contains hidden or 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: SWG Source - Continuous Integration for src repo | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - sychronize | |
| jobs: | |
| compile-src: | |
| runs-on: ubuntu-latest | |
| container: cekisswg/swg-vm3.01-i386:latest | |
| steps: | |
| - name: Clone repository | |
| run: | | |
| cd /home/swg/swg-main | |
| git clone --depth 1 --branch ${{ github.event.pull_request.base.ref }} ${{ github.repository }} pull-request | |
| - name: Checkout pull request branch | |
| run: git -C pull-request checkout ${{ github.event.pull_request.head.ref }} | |
| - name: Run ANT Build | |
| run: | | |
| cd /home/swg/swg-main/src | |
| ant build_src | |