Skip to content

Commit

Permalink
Fix output name
Browse files Browse the repository at this point in the history
  • Loading branch information
langmm committed Feb 8, 2024
1 parent 1ed95a6 commit 5596a64
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,15 +224,24 @@ jobs:
name: Prepare test parameters
outputs:
os-versions: ${{ steps.set-os-versions.outputs.versions }}
test-flags: ${{ steps.set-test-flags.outputs.versions }}
test-flags: ${{ steps.set-test-flags.outputs.testflags }}
runs-on: ubuntu-latest
steps:
- id: set-os-versions
run: echo "versions={\"ubuntu\":\"latest\", \"macos\":\"latest\", \"windows\":\"latest\"}"
>> $GITHUB_OUTPUT
- id: set-test-flags
run: echo "test-flags={\"empty\":\"\", \"basic\":\"--long-running --suites timing
demos top\"}" >> $GITHUB_OUTPUT
run: echo "testflags={\"empty\":\"\", \"basic\":\"--long-running --suites timing
demos top\", \"examples\":\"--suite=examples --extra-examples --mpi-script=run_mpi.sh
--mpi-nproc=3\", \"types-no-c\":\"--suite=types --skip-languages c cpp\",
\"types-c\":\"--suite=types --languages c cpp\", \"long\":\"--long-running\",
\"long-mpi\":\"--long-running --mpi-script=run_mpi.sh\", \"examples-backwards\":\"--suite=examples
--parametrize-example-name=backwards\", \"examples-sbml\":\"--suites examples
--parametrize-language=sbml\", \"long-remote-service\":\"--long-running --remote-service\",
\"examples-rpc-lesson3\":\"--suites examples top --parametrize-example-name=rpc_lesson3\",
\"tools\":\"tests/test_tools.py\", \"long-interp\":\"--long-running --languages
python R matlab\", \"services\":\"tests/test_services.py --nocapture\"}" >>
$GITHUB_OUTPUT
schema:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
name: Update the schema used by the model submission form
Expand Down
6 changes: 3 additions & 3 deletions utils/test-install-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
runs-on: ubuntu-latest
outputs:
os-versions: ${{ steps.set-os-versions.outputs.versions }}
test-flags: ${{ steps.set-test-flags.outputs.versions }}
test-flags: ${{ steps.set-test-flags.outputs.testflags }}
steps:
- id: set-os-versions
run: echo "versions={\"ubuntu\":\"latest\", \"macos\":\"latest\", \"windows\":\"latest\"}" >> $GITHUB_OUTPUT
- id: set-test-flags
run: echo "test-flags={\"empty\":\"\", \"basic\":\"--long-running --suites timing demos top\"}" >> $GITHUB_OUTPUT
# run: echo "test-flags={\"empty\":\"\", \"basic\":\"--long-running --suites timing demos top\", \"examples\":\"--suite=examples --extra-examples --mpi-script=run_mpi.sh --mpi-nproc=3\", \"types-no-c\":\"--suite=types --skip-languages c cpp\", \"types-c\":\"--suite=types --languages c cpp\", \"long\":\"--long-running\", \"long-mpi\":\"--long-running --mpi-script=run_mpi.sh\", \"examples-backwards\":\"--suite=examples --parametrize-example-name=backwards\", \"examples-sbml\":\"--suites examples --parametrize-language=sbml\", \"long-remote-service\":\"--long-running --remote-service\", \"examples-rpc-lesson3\":\"--suites examples top --parametrize-example-name=rpc_lesson3\", \"tools\":\"tests/test_tools.py\", \"long-interp\":\"--long-running --languages python R matlab\", \"services\":\"tests/test_services.py --nocapture\"}" >> $GITHUB_OUTPUT
# run: echo "testflags={\"empty\":\"\", \"basic\":\"--long-running --suites timing demos top\"}" >> $GITHUB_OUTPUT
run: echo "testflags={\"empty\":\"\", \"basic\":\"--long-running --suites timing demos top\", \"examples\":\"--suite=examples --extra-examples --mpi-script=run_mpi.sh --mpi-nproc=3\", \"types-no-c\":\"--suite=types --skip-languages c cpp\", \"types-c\":\"--suite=types --languages c cpp\", \"long\":\"--long-running\", \"long-mpi\":\"--long-running --mpi-script=run_mpi.sh\", \"examples-backwards\":\"--suite=examples --parametrize-example-name=backwards\", \"examples-sbml\":\"--suites examples --parametrize-language=sbml\", \"long-remote-service\":\"--long-running --remote-service\", \"examples-rpc-lesson3\":\"--suites examples top --parametrize-example-name=rpc_lesson3\", \"tools\":\"tests/test_tools.py\", \"long-interp\":\"--long-running --languages python R matlab\", \"services\":\"tests/test_services.py --nocapture\"}" >> $GITHUB_OUTPUT
test_pip:
needs: params
name: Test (${{ matrix.python-version }}, ${{ matrix.os-base }}, ${{ matrix.install-method }}, ${{ matrix.test-flags1 }}, ${{ matrix.test-flags2 }}), Install C = ${{ matrix.install-c }}
Expand Down

0 comments on commit 5596a64

Please sign in to comment.