Skip to content

Commit

Permalink
Fix CircleCI environment block formatting
Browse files Browse the repository at this point in the history
As pointed out by Visual Studio Code, the syntax used was incorrect. An object is expected, rather than an array. Hence, no `- ` prefix.
  • Loading branch information
DanRStevens committed Apr 28, 2024
1 parent a1101f6 commit f1f75f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
macos:
xcode: "13.4.1"
environment:
- HOMEBREW_NO_AUTO_UPDATE: 1
- WARN_EXTRA: "-isystem /usr/local/include"
HOMEBREW_NO_AUTO_UPDATE: 1
WARN_EXTRA: "-isystem /usr/local/include"
steps:
- checkout
- brew-install
Expand All @@ -30,23 +30,23 @@ jobs:
docker:
- image: outpostuniverse/nas2d-gcc:1.5
environment:
- WARN_EXTRA: "-Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wuseless-cast -Weffc++"
WARN_EXTRA: "-Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wuseless-cast -Weffc++"
steps:
- checkout
- build-and-test
build-linux-clang:
docker:
- image: outpostuniverse/nas2d-clang:1.4
environment:
- WARN_EXTRA: "-Wdocumentation -Wdocumentation-unknown-command -Wcomma -Winconsistent-missing-destructor-override -Wmissing-prototypes -Wctad-maybe-unsupported -Wimplicit-int-float-conversion -Wsign-conversion"
WARN_EXTRA: "-Wdocumentation -Wdocumentation-unknown-command -Wcomma -Winconsistent-missing-destructor-override -Wmissing-prototypes -Wctad-maybe-unsupported -Wimplicit-int-float-conversion -Wsign-conversion"
steps:
- checkout
- build-and-test
build-linux-mingw:
docker:
- image: outpostuniverse/nas2d-mingw:1.10
environment:
- WARN_EXTRA: "-Wno-redundant-decls"
WARN_EXTRA: "-Wno-redundant-decls"
steps:
- checkout
- build-and-test
Expand Down

0 comments on commit f1f75f8

Please sign in to comment.