Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
76ef39fc
Commit
76ef39fc
authored
Jun 02, 2019
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update vagrant config
parent
af2c7377
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
support/Vagrantfile
support/Vagrantfile
+3
-4
No files found.
support/Vagrantfile
View file @
76ef39fc
# -*- mode: ruby -*-
# -*- mode: ruby -*-
# vi: set ft=ruby :
# vi: set ft=ruby :
# A vagrant config for testing against gcc-4.
4
.
# A vagrant config for testing against gcc-4.
8
.
Vagrant
.
configure
(
"2"
)
do
|
config
|
Vagrant
.
configure
(
"2"
)
do
|
config
|
config
.
vm
.
box
=
"
bento/ubuntu-10.0
4"
config
.
vm
.
box
=
"
ubuntu/trusty6
4"
config
.
vm
.
provider
"virtualbox"
do
|
vb
|
config
.
vm
.
provider
"virtualbox"
do
|
vb
|
vb
.
memory
=
"4096"
vb
.
memory
=
"4096"
end
end
config
.
vm
.
provision
"shell"
,
inline:
<<-
SHELL
config
.
vm
.
provision
"shell"
,
inline:
<<-
SHELL
sed -i 's/us.archive/old-releases/' /etc/apt/sources.list
apt-get update
apt-get update
apt-get install -y g++ make wget
apt-get install -y g++ make wget
wget -q https://
www.dropbox.com/s/ssvomsla6bkx2wl
/cmake-3.14.4-Linux-x86_64.tar.gz
wget -q https://
github.com/Kitware/CMake/releases/download/v3.14.5
/cmake-3.14.4-Linux-x86_64.tar.gz
tar xzf cmake-3.14.4-Linux-x86_64.tar.gz
tar xzf cmake-3.14.4-Linux-x86_64.tar.gz
ln -s `pwd`/cmake-3.14.4-Linux-x86_64/bin/cmake /usr/local/bin
ln -s `pwd`/cmake-3.14.4-Linux-x86_64/bin/cmake /usr/local/bin
SHELL
SHELL
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment