Add CI pipeline debugging

This commit is contained in:
Jamil Bou Kheir
2021-01-25 23:35:07 -08:00
parent bc97fc31fc
commit d2dbfba705
2 changed files with 6 additions and 4 deletions

View File

@@ -59,6 +59,7 @@ jobs:
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -
sudo apt install nodejs
matrix_os=${{ matrix.os }}
echo "MATRIX OS IS ${matrix_os}"
case $matrix_os in
ubuntu-18.04)
os_name="ubuntu~bionic"

9
Vagrantfile vendored
View File

@@ -15,8 +15,9 @@ Vagrant.configure('2') do |config|
# VPN
config.vm.network 'forwarded_port', guest: 51820, host: 51820, protocol: 'udp'
config.vm.provision 'ansible' do |ansible|
ansible.playbook = 'ansible/playbook.yml'
ansible.verbose = true
end
# Disabling Ansible provisioner for now in favor of a vanilla Ubuntu VM.
# config.vm.provision 'ansible' do |ansible|
# ansible.playbook = 'ansible/playbook.yml'
# ansible.verbose = true
# end
end