From 1062a86d972baca61fa8bf77047a517fa4eb707a Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman Date: Wed, 28 Dec 2022 16:40:45 -0300 Subject: [PATCH] TEMP: Disable other checks. --- .github/workflows/ansible-test.yml | 6 +++--- .github/workflows/docs.yml | 6 +++--- .github/workflows/lint.yml | 6 +++--- .github/workflows/readme.yml | 6 +++--- tests/multihost/Vagrantfile | 4 ++-- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index 70a8a0ef0c..6b987487a0 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -1,8 +1,8 @@ --- name: ansible-test sanity -on: - - push - - pull_request +on: [] + # - push + # - pull_request jobs: ansible_test: name: Verify ansible-test sanity diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e0e8d66298..42d822bd7f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,8 +1,8 @@ --- name: Verify Ansible documentation. -on: - - push - - pull_request +on: [] + # - push + # - pull_request jobs: check_docs_oldest_supported: name: Check Ansible Documentation with ansible-core 2.12. diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b4d64066e5..6041a05133 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,8 +1,8 @@ --- name: Run Linters -on: - - push - - pull_request +on: [] + # - push + # - pull_request jobs: ansible_lint: name: Verify ansible-lint diff --git a/.github/workflows/readme.yml b/.github/workflows/readme.yml index edea5b9fe1..9645bcee12 100644 --- a/.github/workflows/readme.yml +++ b/.github/workflows/readme.yml @@ -1,8 +1,8 @@ --- name: readme test -on: - - push - - pull_request +on: [] + # - push + # - pull_request jobs: ansible_test: name: Verify readme diff --git a/tests/multihost/Vagrantfile b/tests/multihost/Vagrantfile index 6752d4b967..b5d5effeff 100644 --- a/tests/multihost/Vagrantfile +++ b/tests/multihost/Vagrantfile @@ -14,8 +14,8 @@ Vagrant.configure("2") do |config| # Prevent SharedFoldersEnableSymlinksCreate errors config.vm.synced_folder ".", "/vagrant", disabled: true - # increase boot timeout (8 minutes). - config.vm.boot_timeout = 8 * 60 + # increase boot timeout (12 minutes). + config.vm.boot_timeout = 12 * 60 config.vm.define "server.ipa.test" do |server| server.vm.hostname = "server.ipa.test"