[ci] typo

This commit is contained in:
tangxifan 2022-09-26 16:13:00 -07:00
parent 76404d6b81
commit 445a24535a
1 changed files with 3 additions and 3 deletions

View File

@ -171,15 +171,15 @@ jobs:
- name: "Build w/o Yosys (Ubuntu 20.04)"
cc: gcc-9
cxx: g++-9
cmake_flags: "-DOPENFPGA_WITH_YOSYS OFF"
cmake_flags: "-DOPENFPGA_WITH_YOSYS=OFF"
- name: "Build w/o Yosys plugin (Ubuntu 20.04)"
cc: gcc-9
cxx: g++-9
cmake_flags: "-DOPENFPGA_WITH_YOSYS_PLUGIN OFF"
cmake_flags: "-DOPENFPGA_WITH_YOSYS_PLUGIN=OFF"
- name: "Build w/o test (Ubuntu 20.04)"
cc: gcc-9
cxx: g++-9
cmake_flags: "-DOPENFPGA_WITH_TEST OFF"
cmake_flags: "-DOPENFPGA_WITH_TEST=OFF"
# Define the steps to run the build job
env:
CC: ${{ matrix.config.cc }}