Bump org.xerial:sqlite-jdbc from 3.44.0.0 to 3.44.1.0 in /.github #648
Workflow file for this run
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
# This is a basic CI build workflow using GitHub Actions | |
name: ci-build | |
# Controls when the action will run. | |
on: | |
# Triggers this workflow on push to master, devel, MMSdevel or SOdevel. Or pull requests to devel. | |
push: | |
branches: [ master, devel, MMSdevel, SOdevel ] | |
pull_request: | |
branches: [ devel ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a job called "matlab" | |
matlab: | |
# Runs Matlab | |
#runs-on: ubuntu-latest | |
## Specify ubuntu-20.04 (as per 2023-12-02T15:30CET) since "ubuntu-latest" was changed to "ubuntu-22.04" | |
# which may or may not have correct gfortran versions used for some compiled code in its repo. | |
# ("libgfortran5" used for tests of +whamp/ and contrib/libirbem/). | |
runs-on: ubuntu-20.04 | |
steps: | |
# Check-out repository | |
- uses: actions/checkout@v4 | |
# Install MATLAB (GitHub action provided by MathWorks) | |
- name: Set up MATLAB | |
uses: matlab-actions/setup-matlab@v1 | |
# Install required runtime lib for Fortan (whamp mex file) | |
- name: Install libgfortran5 | |
run: | | |
sudo apt-get update | |
sudo apt-get install libgfortran5 | |
# setup irfu-matlab and run tests_before_release | |
- name: Run commands | |
uses: matlab-actions/run-command@v1 | |
with: | |
command: tests_before_release; | |
# upload artifact (pdf report with plots, etc.) | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: test_report.pdf | |
path: ciPath/report.pdf | |
retention-days: 1 | |