Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 10 additions & 16 deletions .github/workflows/github_autotools_intel_classic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Autotools build and unit testing with Intel Classic (weekly)
on:
schedule:
- cron: '0 0 * * 0' # sundays @ midnight
push:

# cancel running jobs if theres a newer push
concurrency:
Expand All @@ -13,28 +12,23 @@ concurrency:
jobs:
intel-autotools:
runs-on: ubuntu-latest
env:
CC: mpiicc
FC: mpiifort
CFLAGS: "-I/libs/include"
FCFLAGS: "-I/libs/include -g -traceback"
LDFLAGS: "-L/libs/lib"
TEST_VERBOSE: 1
I_MPI_FABRICS: "shm" # needed for mpi in image
container:
image: intel/oneapi-hpckit:2023.1.0-devel-ubuntu20.04
env:
CC: mpiicc
FC: mpiifort
CFLAGS: "-I/libs/include"
FCFLAGS: "-I/libs/include -g -traceback"
LDFLAGS: "-L/libs/lib"
TEST_VERBOSE: 1
I_MPI_FABRICS: "shm" # needed for mpi in image
steps:
- name: Cache dependencies
id: cache
uses: actions/cache@v4.2.0
with:
path: /libs
key: intel-libs
- name: Install Intel compilers & MPI
uses: NOAA-EMC/ci-install-intel-toolkit@develop
with:
install-classic: true
install-oneapi: true
install-mpi: true
mpi-wrapper-setup: classic
- name: Install packages for building
run: apt-get update && apt-get install -y autoconf libtool automake zlibc zlib1g-dev
- if: steps.cache.outputs.cache-hit != 'true'
Expand Down
Loading