This repository has been archived by the owner on Feb 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Vagrantfile
101 lines (84 loc) · 3.25 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# -*- mode: ruby -*-
# vi: set ft=ruby :
#
# Copyright (C) 2017 Pelagicore AB
# Copyright (C) 2018-2019 Luxoft Sweden AB
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# SPDX-License-Identifier: MPL-2.0
#
VAGRANTFILE_API_VERSION = "2"
def install_with_apt(config, program)
config.vm.provision "shell" do |s|
s.inline = "apt-get update -y && yes \"\" | apt-get install " + program + " -y"
end
end
def install_sdk(config)
sdk_file_name = (ENV["SDK_FILE_NAME"] || "oecore*toolchain*sh")
config.vm.provision "sdk", type: "shell",
args: [sdk_file_name],
path: "sde-cookbook/sdk/install_sdk.sh"
end
def setup_virtualbox_provider(config, num_cpus, ram_mb, vram_mb)
config.vm.box = "bento/ubuntu-18.04"
config.vm.box_version = "201906.18.0"
config.vm.box_check_update = false
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--cableconnected1", "on"]
vb.gui = true unless ENV["NO_GUI"]
vb.name = "PELUX-SDE"
vb.customize ["modifyvm", :id, "--memory", ram_mb]
vb.customize ["modifyvm", :id, "--vram", vram_mb]
vb.cpus = num_cpus
end
end
def start_desktop_environment(config)
config.vm.provision "shell" do |s|
s.inline = "systemctl start gdm3"
end
end
def install_qtcreator(config, qtcreator_install_dir)
install_with_apt(config, "wget")
config.vm.provision "shell", args: [qtcreator_install_dir],
path: "sde-cookbook/qtcreator/install_qtcreator.sh"
end
def add_template_service_wizard(config, qtcreator_install_dir)
install_with_apt(config, "git")
config.vm.provision "shell", args: [qtcreator_install_dir],
path: "sde-cookbook/qtcreator/add-template-service-wizard.sh"
end
def configure_qtcreator_to_use_sdk(config, qtcreator_install_dir)
config.vm.provision "shell", args: [qtcreator_install_dir], :inline => <<-SHELL
QT_CREATOR_INSTALL_DIR=$1
source /opt/pelux_sdk/environment-setup*
/vagrant/sde-cookbook/qtcreator/configure-qtcreator.py \
"$QT_CREATOR_INSTALL_DIR/libexec/qtcreator/sdktool"
SHELL
end
def install_dlt_viewer(config, num_cpus)
install_with_apt(config, "git")
config.vm.provision "shell", args: [num_cpus],
path: "sde-cookbook/dlt-viewer/install_dlt-viewer.sh"
end
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
num_cpus = (ENV["VAGRANT_NUM_CPUS"] || "2").to_i
ram_mb = ENV["VAGRANT_RAM"] || "8192"
vram_mb = ENV["VAGRANT_VRAM"] || "128"
setup_virtualbox_provider(config, num_cpus, ram_mb, vram_mb)
install_with_apt(config, "ubuntu-gnome-desktop")
install_with_apt(config, "gcc")
install_sdk(config)
qtcreator_install_dir = "/opt/qtcreator"
install_qtcreator(config, qtcreator_install_dir)
configure_qtcreator_to_use_sdk(config, qtcreator_install_dir)
add_template_service_wizard(config, qtcreator_install_dir)
install_with_apt(config, "g++")
install_with_apt(config, "qt5-default")
install_with_apt(config, "qt5-qmake")
install_with_apt(config, "libqt5serialport5-dev")
install_dlt_viewer(config, num_cpus)
start_desktop_environment(config)
end