Skip to content

Commit

Permalink
ci: reduce vagrant system requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Dec 30, 2023
1 parent 5822b1b commit 3cabb8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency: general_workflow

jobs:
checks:
runs-on: macos-latest
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
Expand Down
18 changes: 6 additions & 12 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,12 @@ Vagrant.configure("2") do |config|
owner: "www-data"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# end
#
# View the documentation for the provider you are using for more
# information on available options.
# Reduce requirements so everythin runs on GitHub Actions
config.vm.provider "virtualbox" do |v|
v.memory = 1024
v.cpus = 1
end


# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
Expand Down

0 comments on commit 3cabb8f

Please sign in to comment.