-
Notifications
You must be signed in to change notification settings - Fork 935
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Up to LXD 6.2 + some smaller fixes.
- Loading branch information
Showing
319 changed files
with
72,314 additions
and
59,668 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Download minio/mc | ||
description: Download minio/mc | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Download minio/mc | ||
shell: bash | ||
run: | | ||
set -eux | ||
mkdir -p "$(go env GOPATH)/bin" | ||
# Download minio ready to include in dependencies for system tests. | ||
curl -sSfL https://dl.min.io/server/minio/release/linux-amd64/minio --output "$(go env GOPATH)/bin/minio" | ||
chmod +x "$(go env GOPATH)/bin/minio" | ||
# Also grab the latest minio client to maintain compatibility with the server. | ||
curl -sSfL https://dl.min.io/client/mc/release/linux-amd64/mc --output "$(go env GOPATH)/bin/mc" | ||
chmod +x "$(go env GOPATH)/bin/mc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Install LXD runtime dependencies | ||
description: Installs LXD runtime dependencies | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Installs LXD runtime dependencies | ||
shell: bash | ||
run: | | ||
set -eux | ||
sudo add-apt-repository ppa:ubuntu-lxc/daily -y --no-update | ||
sudo apt-get update | ||
# mask services from lxc-utils (`lxc-*` tools are used in test/suites/lxc-to-lxd.sh) | ||
# doing this masking before the package is installed means they won't even start | ||
sudo systemctl mask lxc.service lxc-net.service | ||
sudo apt-get install --no-install-recommends -y \ | ||
curl \ | ||
git \ | ||
make \ | ||
acl \ | ||
attr \ | ||
bind9-dnsutils \ | ||
btrfs-progs \ | ||
busybox-static \ | ||
dnsmasq-base \ | ||
easy-rsa \ | ||
gettext \ | ||
jq \ | ||
lxc-utils \ | ||
lvm2 \ | ||
nftables \ | ||
quota \ | ||
rsync \ | ||
s3cmd \ | ||
socat \ | ||
sqlite3 \ | ||
squashfs-tools \ | ||
tar \ | ||
tcl \ | ||
thin-provisioning-tools \ | ||
uuid-runtime \ | ||
xfsprogs \ | ||
xz-utils \ | ||
zfsutils-linux | ||
# reclaim some space | ||
sudo apt-get clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.