Skip to content

Manual run ifx -ipo -O3 -no-prec-div -static -fp-model fast=2 -xHost #214

Manual run ifx -ipo -O3 -no-prec-div -static -fp-model fast=2 -xHost

Manual run ifx -ipo -O3 -no-prec-div -static -fp-model fast=2 -xHost #214

Workflow file for this run

name: Test Intel ifort and ifx
on:
# Trigger the workflow on push or pull request
push:
pull_request:
# Trigger the workflow at the end of every week
schedule:
- cron: '0 0 * * 0'
# Trigger the workflow when it is manually triggered
workflow_dispatch:
inputs:
fflags:
description: FFLAGS
required: false
run-name: ${{ github.event_name == 'workflow_dispatch' && format('Manual run {0}', inputs.fflags) || '' }}
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-20.04, macos-latest, macos-11, macos-13]
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.1
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
submodules: recursive
- name: Install Intel oneAPI on Linux
if: startsWith(matrix.os, 'ubuntu')
run: bash .github/scripts/install_oneapi_linux.sh
- name: Install Intel oneAPI on macOS
if: startsWith(matrix.os, 'macos')
run: bash .github/scripts/install_oneapi_macos.sh
- name: Conduct the test
run: |
source /opt/intel/oneapi/setvars.sh
cd test && make itest
if [[ "$RUNNER_OS" = "Linux" ]] ; then
ifx ${{ github.event.inputs.fflags }} ../consts.f90 ../huge.f90 ../inf.f90 ../infnan.f90 ieee_infnan.f90 testinfnan.f90 test.f90 && ./a.out
#make xtest
fi