This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
PlatformGraphics: Add missing DirectGraphics transform modes #111
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: Java CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build with Ant | |
run: ant -noinput -buildfile build.xml | |
- name: Compute commit short SHA | |
id: shortsha | |
run: echo "::set-output name=value::$(git rev-parse --short HEAD)" | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: freej2me-${{ steps.shortsha.outputs.value }} | |
path: build/freej2me.jar |