asdf-java/.github/workflows/tests.yml

48 lines
1.4 KiB
YAML
Raw Normal View History

name: asdf-java Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macOS-latest']
env:
TERM: dumb
steps:
2019-12-31 00:23:27 +08:00
- uses: actions/checkout@v2
2019-11-21 05:09:19 +08:00
- uses: mstksg/get-package@v1
with:
2020-04-16 12:38:11 +08:00
brew: bash coreutils jq shellcheck
2020-02-28 18:05:49 +08:00
apt-get: jq shellcheck
- name: Run ShellCheck
run: |
shellcheck -V
shellcheck ./bin/functions
shellcheck ./update_data.bash
- name: Install asdf
2019-12-31 00:23:27 +08:00
uses: actions/checkout@v2
with:
repository: asdf-vm/asdf
path: asdf
- name: Run tests
env:
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2019-11-21 05:08:07 +08:00
run: |
. asdf/asdf.sh
asdf plugin-test java "$GITHUB_WORKSPACE" --asdf-plugin-gitref "$GITHUB_SHA" --asdf-tool-version adoptopenjdk-8.0.252+9.1.openj9-0.20.0 java -version
- name: macOS Check java_home integration
env:
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
export ASDF_CONFIG_FILE=${HOME}"/.asdfrc"
echo "java_macos_integration_enable = yes" > "${ASDF_CONFIG_FILE}"
. asdf/asdf.sh
asdf plugin-test java "$GITHUB_WORKSPACE" --asdf-plugin-gitref "$GITHUB_SHA" --asdf-tool-version zulu-8.52.0.23 /usr/libexec/java_home -V 2>&1 | grep "Zulu 8.52.0.23"
if: matrix.os == 'macOS-latest'