Tests Cross-Platform #128
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: Tests Cross-Platform | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- dev | |
- master | |
push: | |
branches: | |
- dev | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest # Use Ubuntu if you're building on Linux, or keep windows-latest if you're targeting Windows. | |
strategy: | |
max-parallel: 5 | |
matrix: | |
python-version: [3.9] | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'temurin' # Use 'temurin' for Eclipse Temurin distribution | |
id: setup-java | |
- name: Debug JAVA_HOME | |
run: | | |
echo ${{ steps.setup-java.outputs.java_home }} | |
echo $env:JAVA_HOME | |
echo $env:PATH | |
shell: pwsh | |
- name: Set JAVA_HOME and JDK_HOME | |
run: | | |
echo "JAVA_HOME=${{ steps.setup-java.outputs.java_home }}" >> $GITHUB_ENV | |
echo "JDK_HOME=${{ steps.setup-java.outputs.java_home }}" >> $GITHUB_ENV | |
$env | |
shell: pwsh | |
- name: Print JAVA_HOME and JDK_HOME | |
run: | | |
echo "JAVA_HOME: $env:JAVA_HOME" | |
echo "JDK_HOME: $env:JDK_HOME" | |
shell: pwsh | |
- name: Setup Miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-activate-base: false | |
activate-environment: pathml | |
environment-file: '.github/ci-environments/env-py39.yml' # Directly specify the env-py39.yml file | |
mamba-version: "*" | |
python-version: ${{ matrix.python-version }} | |
- name: Debugging | |
shell: bash -l {0} | |
run: | | |
echo "Checking the status of mamba..." | |
mamba --version | |
echo "Checking the available disk space..." | |
df -h | |
- name: Conda info | |
shell: bash -l {0} | |
run: | | |
conda info | |
conda list | |
- name: Install PathML | |
shell: bash -l {0} | |
run: pip install -e . |