Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Feb 21, 2024
1 parent f085a05 commit bb0e326
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 17 deletions.
38 changes: 22 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,28 @@ jobs:

runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: MATLAB test
run: |
/opt/hostedtoolcache/MATLAB/2023.2.999/x64/bin/matlab -nodisplay -r "disp(\"Hello, world!\")"
- name: Setup Dependencies
uses: ./.github/actions/setup-dependencies
# - name: Checkout repository
# uses: actions/checkout@v4

- name: Build ${{ matrix.name || matrix.language }} ${{matrix.make_flags}} on ${{ matrix.os }}
uses: ./.github/actions/build
timeout-minutes: 90
with:
language: ${{ matrix.language }}
make_flags: ${{ matrix.make_flags }}
# - name: Setup Dependencies
# uses: ./.github/actions/setup-dependencies

- name: Test ${{ matrix.name || matrix.language }} on ${{ matrix.os }}
uses: ./.github/actions/test
timeout-minutes: 90
with:
# See https://github.com/zeroc-ice/ice/issues/1653
flags: "--rfilter IceGrid/replication ${{ matrix.test_flags }}"


# - name: Build ${{ matrix.name || matrix.language }} ${{matrix.make_flags}} on ${{ matrix.os }}
# uses: ./.github/actions/build
# timeout-minutes: 90
# with:
# language: ${{ matrix.language }}
# make_flags: ${{ matrix.make_flags }}

# - name: Test ${{ matrix.name || matrix.language }} on ${{ matrix.os }}
# uses: ./.github/actions/test
# timeout-minutes: 90
# with:
# # See https://github.com/zeroc-ice/ice/issues/1653
# flags: "--rfilter IceGrid/replication ${{ matrix.test_flags }}"
1 change: 0 additions & 1 deletion matlab/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ $(icetoolbox_file):: $(icethunk_target) $(slice2matlab_path) $(lang_srcdir)/lib/
cp -rf $(cpp_bindir)/slice2matlab $(lang_srcdir)/toolbox/build/
# Doc files
cp -rf $(lang_srcdir)/toolbox/doc $(lang_srcdir)/toolbox/build
/opt/hostedtoolcache/MATLAB/2023.2.999/x64/bin/matlab -nodisplay -r "addFolderToPath ./toolbox/build" || true
cd $(lang_srcdir)/toolbox && $(MATLAB_HOME)/bin/matlab -nodisplay -r "addFolderToPath '`realpath build`'"
cd $(lang_srcdir)/toolbox && $(MATLAB_HOME)/bin/matlab -nodisplay -r "buildToolbox '$(version)'"
cd $(lang_srcdir)/toolbox && $(MATLAB_HOME)/bin/matlab -nodisplay -r "removeFolderFromPath '`realpath build`'"
Expand Down

0 comments on commit bb0e326

Please sign in to comment.