From d2dbfba70550bfcfb76e3fce90395229338ef776 Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Mon, 25 Jan 2021 23:35:07 -0800 Subject: [PATCH] Add CI pipeline debugging --- .github/workflows/ci.yml | 1 + Vagrantfile | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abeb68937..8840e115a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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" diff --git a/Vagrantfile b/Vagrantfile index 227303784..5e74b89d3 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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