Skip to content

Commit

Permalink
cirrus: Add some missing semicolons
Browse files Browse the repository at this point in the history
Newlines aren't preserved in this section so they're needed to separate
commands. The exports luckily worked anyway as a single long line, but
erroneously exported a variable called "export"
[skip ci]
  • Loading branch information
dfandrich committed Feb 3, 2020
1 parent 4b6fd29 commit 70ae5c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .cirrus.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ task:
name: FreeBSD name: FreeBSD
freebsd_instance: freebsd_instance:
matrix: matrix:
# There isn't a stable 13.0 image yet (2019-12) # A stable 13.0 image likely won't be available before early 2021
image_family: freebsd-13-0-snap image_family: freebsd-13-0-snap
image_family: freebsd-12-1 image_family: freebsd-12-1
# The stable 11.3 image causes "Agent is not responding" so use a snapshot # The stable 11.3 image causes "Agent is not responding" so use a snapshot
Expand All @@ -23,8 +23,8 @@ task:
- case `uname -r` in - case `uname -r` in
13.0*) 13.0*)
export CC=clang; export CC=clang;
export CFLAGS="-fsanitize=address,undefined,signed-integer-overflow -fno-sanitize-recover=undefined,integer -Wformat -Werror=format-security -Werror=array-bounds -g" export CFLAGS="-fsanitize=address,undefined,signed-integer-overflow -fno-sanitize-recover=undefined,integer -Wformat -Werror=format-security -Werror=array-bounds -g";
export CXXFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=undefined,integer -Wformat -Werror=format-security -Werror=array-bounds -g" export CXXFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=undefined,integer -Wformat -Werror=format-security -Werror=array-bounds -g";
export LDFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=undefined,integer" ;; export LDFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=undefined,integer" ;;
esac esac
- ./configure --prefix="${HOME}"/install --enable-debug --with-libssh2 --with-brotli --with-gssapi --with-libidn2 --enable-manual --enable-ldap --enable-ldaps --with-librtmp --with-libmetalink --with-libpsl --with-nghttp2 || { tail -300 config.log; false; } - ./configure --prefix="${HOME}"/install --enable-debug --with-libssh2 --with-brotli --with-gssapi --with-libidn2 --enable-manual --enable-ldap --enable-ldaps --with-librtmp --with-libmetalink --with-libpsl --with-nghttp2 || { tail -300 config.log; false; }
Expand Down

0 comments on commit 70ae5c4

Please sign in to comment.