Change default temporary storage location to $HOME/.tmp #121
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| install: | |
| strategy: | |
| matrix: | |
| platform: ["ubuntu-latest", "macos-latest"] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - name: Setup Java JDK | |
| uses: actions/setup-java@v3.12.0 | |
| with: | |
| distribution: oracle | |
| java-version: 17 | |
| - name: Print diagnostics | |
| run: | | |
| echo $PATH | |
| echo ~ | |
| shell: bash | |
| - name: Adjust $PATH (Windows only) | |
| run: | | |
| echo "~/.local/bin" >> $GITHUB_PATH | |
| shell: bash | |
| if: ${{ matrix.platform == 'windows-latest' }} | |
| - name: Check out the repository | |
| uses: actions/checkout@v3 | |
| - name: Install nightly all | |
| run: | | |
| bash install.sh nightly all | |
| lfc --version | |
| lfd --version | |
| lff --version | |
| which epoch | |
| shell: bash | |
| - name: Install stable all | |
| run: | | |
| bash install.sh stable all | |
| lfc --version | |
| lfd --version | |
| lff --version | |
| which epoch | |
| shell: bash | |
| - name: Install epoch cli | |
| run: | | |
| bash install.sh epoch cli | |
| lfc --version | |
| lfd --version | |
| lff --version | |
| which epoch | |
| shell: bash | |
| - name: Install specific version of cli | |
| run: | | |
| bash install.sh cli v0.8.1 | |
| lfc --version | |
| lfd --version | |
| lff --version | |
| shell: bash |