diff options
author | 2020-03-02 23:04:22 +0100 | |
---|---|---|
committer | 2020-03-02 23:04:22 +0100 | |
commit | 53ca2a2e3a3e183616d4a060ef917e36eb2d23b5 (patch) | |
tree | 0ae6224559314904492033378795bd21b96623d6 /agl-documentation/host-configuration/docs/1-verify-build-host.md | |
parent | 4e7e82a279ffa322f31e0dfee8a4bad370878753 (diff) | |
parent | aa9912660e08f8d406e74807bab476cc60dd9581 (diff) |
Merge pull request #17 from dl9pf/for-master
Add agl-documentation subfolder into agl repo
Diffstat (limited to 'agl-documentation/host-configuration/docs/1-verify-build-host.md')
-rwxr-xr-x | agl-documentation/host-configuration/docs/1-verify-build-host.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/agl-documentation/host-configuration/docs/1-verify-build-host.md b/agl-documentation/host-configuration/docs/1-verify-build-host.md new file mode 100755 index 0000000..bc7b158 --- /dev/null +++ b/agl-documentation/host-configuration/docs/1-verify-build-host.md @@ -0,0 +1,24 @@ +# Verify Your Build Host + +In order to build a Microservice binding natively, you need to be using a +supported Linux distribution. +In general, a recent version of Debian, Ubuntu, OpenSUSE, and Fedora works. +Following is a specific list of supported distributions: + +* [Debian](https://www.debian.org/releases/) 9.0 +* [Ubuntu](https://wiki.ubuntu.com/Releases) 16.04, 16.10, 17.10, and 18.04 +* [OpenSUSE](https://en.opensuse.org/openSUSE:Roadmap) Leap 15.0 and Tumbleweed +* [Fedora](https://fedoraproject.org/wiki/Releases) 27, 28, 29, and Rawhide. + +Exporting the `DISTRO` environment variable defines the distribution. +Following are examples: + +```bash +export DISTRO="Debian_9.0" +export DISTRO="xUbuntu_16.04" +export DISTRO="xUbuntu_16.10" +export DISTRO="xUbuntu_17.10" +export DISTRO="xUbuntu_18.04" +``` + +Set the `DISTRO` environment appropriately. |