From 3d1310304f2df0cdab40218b645a54152a72dd14 Mon Sep 17 00:00:00 2001 From: minhqdao Date: Mon, 11 Mar 2024 00:59:06 +0545 Subject: [PATCH] Use newest compiler versions --- .github/workflows/ci.yml | 4 ++-- src/version_f.f90 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7563c33..b8429ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,8 @@ jobs: os: [ubuntu-latest] toolchain: - { compiler: gcc, version: 13 } - - { compiler: intel, version: 2023.2 } - - { compiler: intel-classic, version: 2021.10 } + - { compiler: intel, version: 2024.0 } + - { compiler: intel-classic, version: 2021.11 } - { compiler: nvidia-hpc, version: 23.11 } include: - os: macos-latest diff --git a/src/version_f.f90 b/src/version_f.f90 index 48f8c58..96f6ffb 100644 --- a/src/version_f.f90 +++ b/src/version_f.f90 @@ -74,8 +74,8 @@ subroutine parse_comp_set(this) comp%version%major = 2 comp%version%minor = 1 comp%version%patch = 0 - print *, 'before array extension: ', this%comps(1)%op ! Pay attention to this + print *, 'before array extension: ', this%comps(1)%op ! Prints '>' this%comps = [this%comps, comp] - print *, 'after array extension: ', this%comps(1)%op ! And this + print *, 'after array extension: ', this%comps(1)%op ! Prints '0' end end