aboutsummaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/build.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/.ci/build.sh b/.ci/build.sh
deleted file mode 100755
index ece5b2a3..00000000
--- a/.ci/build.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-
-# clone and build wlc
-git clone https://github.com/Cloudef/wlc.git
-cd wlc
-git submodule update --init --recursive # - initialize and fetch submodules
-mkdir target && cd target # - create build target directory
-cmake -DCMAKE_BUILD_TYPE=Upstream .. # - run CMake
-make # - compile
-sudo make install # - install
-
-cd ../..
-
-# build sway
-cmake .
-make