diff options
author | tgingold <tgingold@users.noreply.github.com> | 2022-05-16 19:21:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 19:21:52 +0200 |
commit | 5f6eae0920bde575fc36a9661b44adbf0dfec7c7 (patch) | |
tree | 0dc5a5acf762c74e59378b783fc272b83ab3705a /.github | |
parent | c2475bd22f647ebea751171fc6376e0b2c872fb7 (diff) | |
parent | 9217cecc8bee7b2a6759f38eafb823703c9d0617 (diff) | |
download | ghdl-5f6eae0920bde575fc36a9661b44adbf0dfec7c7.tar.gz ghdl-5f6eae0920bde575fc36a9661b44adbf0dfec7c7.tar.bz2 ghdl-5f6eae0920bde575fc36a9661b44adbf0dfec7c7.zip |
Merge pull request #2058 from Xiretza/no-default-werror
fix(configure): disable -Werror by default
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/Test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 18f06619d..0ede8cee3 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -28,7 +28,7 @@ jobs: run: | docker run --rm -i -v $(pwd):/src -w /src ghdl/debug:base <<'EOF' #!/usr/bin/env sh - ./configure && make && make install + ./configure --enable-werror && make && make install gnatdoc -P./ghdl EOF @@ -53,7 +53,7 @@ jobs: docker build -t ghdl/doc . -f- <<-EOF FROM ghdl/build:doc COPY . /opt/ghdl - RUN cd /opt/ghdl && ./configure && make && make install + RUN cd /opt/ghdl && ./configure --enable-werror && make && make install EOF - name: '📥 Download artifact: gnatdoc' |