Compare commits

3 Commits

Author SHA1 Message Date
Timothy Stewart 058916047c fix(ci): mnevermind 2024-01-24 20:56:56 -06:00
Timothy Stewart 634fbb678b fix(ci): only run jobs that require self-hosted runners 2024-01-24 20:53:12 -06:00
Timothy Stewart e63e207749 fix(ci): self-hosted 2024-01-24 20:51:42 -06:00
6 changed files with 3 additions and 98 deletions
-56
View File
@@ -21,32 +21,6 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }} python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip' # caching pip dependencies cache: 'pip' # caching pip dependencies
# - name: Cache Ansible
# uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
# id: cache-ansible
# with:
# path: ~/.ansible/collections
# key: ansible-${{ hashFiles('collections/requirements.yml') }}
# restore-keys: |
# ansible-
# - name: Install dependencies
# run: |
# echo "::group::Upgrade pip"
# python3 -m pip install --upgrade pip
# echo "::endgroup::"
# echo "::group::Install Python requirements from requirements.txt"
# python3 -m pip install -r requirements.txt
# echo "::endgroup::"
# - name: Install ansible dependencies
# if: steps.cache-ansible.outputs.cache-hit != 'true' # only run if false since this is just a cache step
# run: |
# echo "::group::Install Ansible role requirements from collections/requirements.yml"
# ansible-galaxy install -r collections/requirements.yml
# echo "::endgroup::"
- name: Cache Vagrant boxes - name: Cache Vagrant boxes
id: cache-vagrant id: cache-vagrant
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0 uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
@@ -58,36 +32,6 @@ jobs:
restore-keys: | restore-keys: |
vagrant-boxes vagrant-boxes
# - name: install apt packages
# run: |
# wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
# echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
# sudo apt update && sudo apt -y install vagrant virtualbox
# - name: Configure Homebrew cache
# uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
# id: cache-homebrew
# with:
# path: |
# ~/Library/Caches/Homebrew
# key: brew-${{ hashFiles('./Brewfile') }}
# restore-keys: brew-
# - name: Update Homebrew
# if: | # only run if false since this is just a cache step
# steps.cache-homebrew.outputs.cache-hit != 'true' || steps.cache-vagrant.outputs.cache-hit != 'true'
# run: |
# brew update --preinstall
# - name: Install Homebrew dependencies
# if: | # only run if false since this is just a cache step
# steps.cache-homebrew.outputs.cache-hit != 'true' || steps.cache-cache-vagrant.outputs.cache-hit != 'true'
# run: |
# env HOMEBREW_NO_AUTO_UPDATE=1 brew bundle --no-upgrade --file ./Brewfile
# vagrant --version
# vboxmanage --version
- name: Download Vagrant boxes for all scenarios - name: Download Vagrant boxes for all scenarios
# To save some cache space, all scenarios share the same cache key. # To save some cache space, all scenarios share the same cache key.
# On the other hand, this means that the cache contents should be # On the other hand, this means that the cache contents should be
-28
View File
@@ -22,11 +22,6 @@ jobs:
with: with:
ref: ${{ github.event.pull_request.head.sha }} ref: ${{ github.event.pull_request.head.sha }}
# - name: Restore Ansible cache
# uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
# with:
# path: ~/.ansible/collections
# key: ansible-${{ hashFiles('collections/requirements.yml') }}
- name: Configure VirtualBox - name: Configure VirtualBox
run: |- run: |-
sudo mkdir -p /etc/vbox sudo mkdir -p /etc/vbox
@@ -41,29 +36,6 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }} python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip' # caching pip dependencies cache: 'pip' # caching pip dependencies
# - name: Restore Homebrew cache
# uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
# with:
# path: |
# ~/Library/Caches/Homebrew
# key: brew-${{ hashFiles('./Brewfile') }}
# - name: Update Homebrew
# run: |
# brew update --preinstall
# - name: Install Homebrew dependencies
# run: |
# env HOMEBREW_NO_AUTO_UPDATE=1 brew bundle --no-upgrade --file ./Brewfile
# vagrant --version
# vboxmanage --version
# - name: install apt packages
# run: |
# wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
# echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
# sudo apt update && sudo apt -y install vagrant virtualbox
- name: Restore vagrant Boxes cache - name: Restore vagrant Boxes cache
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0 uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
with: with:
-5
View File
@@ -1,5 +0,0 @@
tap "homebrew/bundle"
tap "hashicorp/tap"
cask "virtualbox"
cask "vagrant"
+1 -3
View File
@@ -1,8 +1,6 @@
--- ---
dependency: dependency:
name: galaxy name: galaxy
options:
requirements-file: collections/requirements.yml
driver: driver:
name: vagrant name: vagrant
platforms: platforms:
@@ -75,7 +73,7 @@ platforms:
provisioner: provisioner:
name: ansible name: ansible
env: env:
ANSIBLE_VERBOSITY: 3 ANSIBLE_VERBOSITY: 1
playbooks: playbooks:
converge: ../resources/converge.yml converge: ../resources/converge.yml
side_effect: ../resources/reset.yml side_effect: ../resources/reset.yml
+1 -3
View File
@@ -1,8 +1,6 @@
--- ---
dependency: dependency:
name: galaxy name: galaxy
options:
requirements-file: collections/requirements.yml
driver: driver:
name: vagrant name: vagrant
platforms: platforms:
@@ -56,7 +54,7 @@ platforms:
provisioner: provisioner:
name: ansible name: ansible
env: env:
ANSIBLE_VERBOSITY: 3 ANSIBLE_VERBOSITY: 1
playbooks: playbooks:
converge: ../resources/converge.yml converge: ../resources/converge.yml
side_effect: ../resources/reset.yml side_effect: ../resources/reset.yml
+1 -3
View File
@@ -1,8 +1,6 @@
--- ---
dependency: dependency:
name: galaxy name: galaxy
options:
requirements-file: collections/requirements.yml
driver: driver:
name: vagrant name: vagrant
platforms: platforms:
@@ -24,7 +22,7 @@ platforms:
provisioner: provisioner:
name: ansible name: ansible
env: env:
ANSIBLE_VERBOSITY: 3 ANSIBLE_VERBOSITY: 1
playbooks: playbooks:
converge: ../resources/converge.yml converge: ../resources/converge.yml
side_effect: ../resources/reset.yml side_effect: ../resources/reset.yml