summaryrefslogtreecommitdiff
path: root/.lift
diff options
context:
space:
mode:
authorThomas M. DuBuisson <tommd@muse.dev>2021-09-22 19:05:06 -0700
committerDaniel Stenberg <daniel@haxx.se>2021-09-23 12:57:04 +0200
commit33363aeb4d56dbc370f011bc48effcb7151161a8 (patch)
tree089201616bb0f13cfe81bff8f1a5911dae9f1709 /.lift
parente75be2c4b20ced981606c1338759ac3dc6edc309 (diff)
downloadcurl-33363aeb4d56dbc370f011bc48effcb7151161a8.tar.gz
ci: update Lift config to match requirements of curl build
Also renamed Muse -> Lift, the new tool name. Closes #7761
Diffstat (limited to '.lift')
-rw-r--r--.lift/config.toml3
-rwxr-xr-x.lift/setup.sh4
2 files changed, 7 insertions, 0 deletions
diff --git a/.lift/config.toml b/.lift/config.toml
new file mode 100644
index 000000000..7a5e01f4c
--- /dev/null
+++ b/.lift/config.toml
@@ -0,0 +1,3 @@
+ignore = [ "DEAD_STORE" ]
+build = "make"
+setup = ".lift/setup.sh"
diff --git a/.lift/setup.sh b/.lift/setup.sh
new file mode 100755
index 000000000..a9bc873b3
--- /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"