* Revert back to using libsqlcipher0 for Debian & Ubuntu packages of Element Desktop
Add option to static link for linux instead of forcing it
* Fix linux variants and add CI job
* Fix workflow syntax and add concurrency
* public all the things
* Fix macOS builds by pinning Typescript
Due to https://github.com/joyent/node-verror/issues/86
* Fix linux build, we no longer use tclsh
* Correct fix for linux build issue
* fix it for realsies this time
xenial is no longer in LTS, so the docker image just doesn't build
anymore (lacks the letsencrypt ISRG root cert that classic.yarnpkg.com
uses).
Upgrade to the next LTS (bionic).
The libcurl change essentally reverts a change made when changing
back to xenial initially (xenial had curl3 and bionic has 4, so
installing a different libcurl version caused curl itself to be
removed).
Headlines: The Linux build image has been updated to bionic. This version of element will use a newer glibc which will drop support for some older systems.
Since Xenial has the oldest glibc (2.23) of all the active distributions, this
attempts to construct a build image based on that. The Dockerfile here was built
by recursively expanding the `FROM` lines until reaching
`buildpack-deps:bionic-curl` and then changing that to `xenial`. Everything else
is the same.
Part of https://github.com/vector-im/riot-web/issues/13553