Skip to content

Commit

Permalink
Add ubuntu 20.04 support. Basic clone of ubuntu 18.04. (#17)
Browse files Browse the repository at this point in the history
* Add ubuntu 20.04 support. Basic clone of ubuntu 18.04.

* add ub20 to azure pipelines
  • Loading branch information
nneul authored and jborean93 committed Oct 4, 2021
1 parent a4e5577 commit 491245c
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ stages:
distribution: ubuntu16.04
Ubuntu18.04:
distribution: ubuntu18.04
Ubuntu20.04:
distribution: ubuntu20.04
Archlinux:
distribution: archlinux
Alpine3:
Expand Down
27 changes: 27 additions & 0 deletions distribution_meta/ubuntu20.04.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"container_image": "ubuntu:20.04",
"package_manager": "apt",
"microsoft_repo": "https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb",
"build_deps": [
"cmake",
"g++",
"git",
"libkrb5-dev",
"libpam-dev",
"libssl-dev",
"lsb-release",
"make",
"openssl",
"pkg-config"
],
"test_deps": [
"gcc",
"gss-ntlmssp",
"krb5-user",
"libkrb5-dev",
"powershell"
],
"cert_staging_dir": "/usr/local/share/ca-certificates",
"cert_staging_cmd": "update-ca-certificates",
"cert_extension": "crt"
}
1 change: 1 addition & 0 deletions docs/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ The distributions that are currently setup in the `build.py` script are:
+ [macOS.json](../distribution_meta/macOS.json) - Cannot be built on a Docker container, must be built on an actual macOS host
+ [ubuntu16.04.json](../distribution_meta/ubuntu16.04.json)
+ [ubuntu18.04.json](../distribution_meta/ubuntu18.04.json)
+ [ubuntu20.04.json](../distribution_meta/ubuntu20.04.json)

The json file contains all the information required for `build.py` to install the depedencies and build the libraries.

Expand Down

0 comments on commit 491245c

Please sign in to comment.