summaryrefslogtreecommitdiff
path: root/vendor/github.com/containerd/cgroups/Vagrantfile
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-04-03 11:16:17 +0200
committerLibravatar GitHub <noreply@github.com>2023-04-03 11:16:17 +0200
commit57dc742c76d7876a2457594715a7b5bc2c9a92bd (patch)
tree76be1ec744face5bf4f617d4c9fca084707e4268 /vendor/github.com/containerd/cgroups/Vagrantfile
parent[bugfix/frontend] Preload css styles (#1638) (diff)
downloadgotosocial-57dc742c76d7876a2457594715a7b5bc2c9a92bd.tar.xz
[chore]: Bump github.com/KimMachineGun/automemlimit from 0.2.4 to 0.2.5 (#1666)
Bumps [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) from 0.2.4 to 0.2.5. - [Release notes](https://github.com/KimMachineGun/automemlimit/releases) - [Commits](https://github.com/KimMachineGun/automemlimit/compare/v0.2.4...v0.2.5) --- updated-dependencies: - dependency-name: github.com/KimMachineGun/automemlimit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/github.com/containerd/cgroups/Vagrantfile')
-rw-r--r--vendor/github.com/containerd/cgroups/Vagrantfile46
1 files changed, 0 insertions, 46 deletions
diff --git a/vendor/github.com/containerd/cgroups/Vagrantfile b/vendor/github.com/containerd/cgroups/Vagrantfile
deleted file mode 100644
index 9a4aac8cb..000000000
--- a/vendor/github.com/containerd/cgroups/Vagrantfile
+++ /dev/null
@@ -1,46 +0,0 @@
-# -*- mode: ruby -*-
-# vi: set ft=ruby :
-
-Vagrant.configure("2") do |config|
-# Fedora box is used for testing cgroup v2 support
- config.vm.box = "fedora/35-cloud-base"
- config.vm.provider :virtualbox do |v|
- v.memory = 4096
- v.cpus = 2
- end
- config.vm.provider :libvirt do |v|
- v.memory = 4096
- v.cpus = 2
- end
- config.vm.provision "shell", inline: <<-SHELL
- set -eux -o pipefail
- # configuration
- GO_VERSION="1.17.7"
-
- # install gcc and Golang
- dnf -y install gcc
- curl -fsSL "https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz" | tar Cxz /usr/local
-
- # setup env vars
- cat >> /etc/profile.d/sh.local <<EOF
-PATH=/usr/local/go/bin:$PATH
-GO111MODULE=on
-export PATH GO111MODULE
-EOF
- source /etc/profile.d/sh.local
-
- # enter /root/go/src/github.com/containerd/cgroups
- mkdir -p /root/go/src/github.com/containerd
- ln -s /vagrant /root/go/src/github.com/containerd/cgroups
- cd /root/go/src/github.com/containerd/cgroups
-
- # create /test.sh
- cat > /test.sh <<EOF
-#!/bin/bash
-set -eux -o pipefail
-cd /root/go/src/github.com/containerd/cgroups
-go test -v ./...
-EOF
- chmod +x /test.sh
- SHELL
-end