Skip to content

fix #9, go with no cmd line args if no (named)argument is needed #11

fix #9, go with no cmd line args if no (named)argument is needed

fix #9, go with no cmd line args if no (named)argument is needed #11

Workflow file for this run

name: intel
on: [push, pull_request]
jobs:
intel-build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
env:
FC: ifort
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Add Intel repository
run: |
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB
sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB
rm GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB
echo "deb https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
sudo apt-get update
- name: Install Intel oneAPI compiler
run: |
sudo apt-get install intel-oneapi-compiler-fortran
source /opt/intel/oneapi/setvars.sh
printenv >> $GITHUB_ENV
- name: Install meson
run: pip3 install meson ninja
- name: meson build
run: |
meson setup _build
meson test -C _build