Skip to content

Commit 92f5ff7

Browse files
Merge pull request #749 from pawelgrzeda/master
Update FreeBSD template
2 parents 80b3467 + 8ea4dd4 commit 92f5ff7

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

ci-freebsd-12.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ provisioners:
4848
- packer-scripts/freebsd-update
4949
- packer-scripts/pre-chef-bootstrap-bsd
5050
- packer-scripts/clone-travis-cookbooks-bsd
51+
- packer-scripts/freebsd-install-pkgs
5152
- packer-scripts/freebsd-cleanup
5253
environment_vars:
5354
- TRAVIS_COOKBOOKS_BRANCH={{ user `travis_cookbooks_branch` }}

packer-scripts/freebsd-install-pkgs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/csh -xe
2+
3+
pkg install -y bash
4+
pkg install -y gcc10-devel cmake gmake gnulib autoconf automake ccache
5+
6+
ln -s /usr/local/bin/gcc10 /usr/local/bin/gcc
7+
ln -s /usr/local/bin/g++10 /usr/local/bin/g++
8+
9+
pkg install -y openjdk8
10+
pkg install -y openjdk11
11+
pkg install -y openjdk12
12+
pkg install -y openjdk13
13+
pkg install -y maven
14+
pkg install -y gradle
15+
pkg install -y apache-ant

0 commit comments

Comments
 (0)