From 4093772dde5462076b5eb1e583165be1e91a9d56 Mon Sep 17 00:00:00 2001 From: Weiqun Zhang Date: Wed, 30 Oct 2024 18:10:33 -0700 Subject: [PATCH] Disable Warnings in oneAPI 2025.0 (#138) --- .github/workflows/sycl.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sycl.yml b/.github/workflows/sycl.yml index d5c33980..ff9da2e9 100644 --- a/.github/workflows/sycl.yml +++ b/.github/workflows/sycl.yml @@ -16,7 +16,7 @@ jobs: if: ${{ github.repository == 'AMReX-Fluids/incflo' || github.event_name != 'schedule' }} name: SYCL EB 2D runs-on: ubuntu-latest - env: {CXXFLAGS: "-Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wextra-semi -Wunreachable-code -Wnon-virtual-dtor -Wno-sign-compare -Wno-missing-braces"} + env: {CXXFLAGS: "-Werror -Wall -Wextra -Wpedantic -Wnull-dereference -Wfloat-conversion -Wshadow -Woverloaded-virtual -Wextra-semi -Wunreachable-code -Wnon-virtual-dtor -Wno-sign-compare -Wno-missing-braces -Wno-unused-variable -Wno-shadow"} steps: - name: Checkout incflo uses: actions/checkout@v4