We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75d69a2 commit 933cf18Copy full SHA for 933cf18
.github/workflows/test.yml
@@ -72,9 +72,12 @@ jobs:
72
sudo add-apt-repository "deb https://apt.repos.intel.com/oneapi all main"
73
sudo apt-get update
74
sudo apt-get install -y intel-oneapi-compiler-fortran intel-oneapi-mpi intel-oneapi-mpi-devel
75
+ DEFAULT_ENV=$(mktemp)
76
+ INTEL_ENV=$(mktemp)
77
+ printenv | sort > "$DEFAULT_ENV"
78
source /opt/intel/oneapi/setvars.sh
- printenv >> $GITHUB_ENV
-
79
+ printenv | sort > "$INTEL_ENV"
80
+ comm -13 "$DEFAULT_ENV" "$INTEL_ENV" >> $GITHUB_ENV
81
82
- name: Build
83
run: |
0 commit comments