test:toolbox_used: only functions known to exist #708
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-nojvm | |
| on: | |
| push: | |
| paths: | |
| - "**.m" | |
| - "**.h" | |
| - "**.cpp" | |
| - ".github/workflows/ci-nojvm.yml" | |
| - ".github/workflows/*/action.yml" | |
| - "!private/publish_gen_index_html.m" | |
| - "!octave_build.m" | |
| - "!scripts/**" | |
| # avoid wasted runs | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| NoJVM: | |
| timeout-minutes: 15 | |
| runs-on: ${{ matrix.os }} | |
| name: ${{ matrix.release }}-${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04, macos-latest, windows-latest] | |
| release: [R2023b, R2025a] | |
| startup-options: ["-nojvm"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/workflows/composite-install-matlab | |
| - name: Matlab tell External Language Interface versions | |
| uses: matlab-actions/run-command@v2 | |
| with: | |
| command: stdlib.platform_tell() | |
| - name: Fortran FC | |
| if: runner.os == 'macOS' | |
| run: echo "FC=gfortran-14" >> $GITHUB_ENV | |
| - name: No Java, no Mex tests | |
| uses: ./.github/workflows/composite-nomex |