From: Thomas M. DuBuisson Date: Thu, 23 Sep 2021 02:05:06 +0000 (-0700) Subject: ci: update Lift config to match requirements of curl build X-Git-Tag: curl-7_80_0~196 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33363aeb4d56dbc370f011bc48effcb7151161a8;p=thirdparty%2Fcurl.git ci: update Lift config to match requirements of curl build Also renamed Muse -> Lift, the new tool name. Closes #7761 --- diff --git a/.muse/config.toml b/.lift/config.toml similarity index 62% rename from .muse/config.toml rename to .lift/config.toml index 4e5b5cc63b..7a5e01f4c5 100644 --- a/.muse/config.toml +++ b/.lift/config.toml @@ -1,3 +1,3 @@ ignore = [ "DEAD_STORE" ] build = "make" -setup = ".muse/setup.sh" +setup = ".lift/setup.sh" diff --git a/.lift/setup.sh b/.lift/setup.sh new file mode 100755 index 0000000000..a9bc873b32 --- /dev/null +++ b/.lift/setup.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash +./buildconf +./configure --with-openssl +echo "Ran the setup script for Lift including autoconf and executing ./configure --with-openssl" diff --git a/.muse/setup.sh b/.muse/setup.sh deleted file mode 100755 index 55872d594b..0000000000 --- a/.muse/setup.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -./buildconf -./configure -echo "Ran the setup script for muse including autoconf and executing ./configure"