From 45491be92b18f5e25065fab778a52b9b7e163594 Mon Sep 17 00:00:00 2001 From: "George G. Vega Yon" Date: Tue, 30 Jan 2024 21:42:47 -0700 Subject: [PATCH] Passing env variable --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 672a4482..aa854296 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,8 +25,8 @@ jobs: - name: Check run: | - docker run --rm -i -v ${PWD}:/home/tests -w /home/tests ${cntr} \ - OPENMP=-fopenmp make all-examples + docker run --rm -i -e "OPENMP=-fopenmp" -v ${PWD}:/home/tests \ + -w /home/tests ${cntr} make all-examples test-macos: runs-on: macos-latest