Compare commits

..

8 Commits

Author SHA1 Message Date
Chris Roberts 5b64a332ee Force update 2020-01-14 13:06:16 -08:00
Chris Roberts c397321998 Force update 2020-01-14 13:04:43 -08:00
Chris Roberts ed34959686 Override sha for release 2020-01-14 12:58:53 -08:00
Chris Roberts 6dc4f04231 Update common.sh 2020-01-14 12:56:15 -08:00
Chris Roberts 486a6161f4 Update common.sh helper 2020-01-14 12:42:53 -08:00
Chris Roberts de60beec69 Remove test jobs from builds 2020-01-14 12:42:46 -08:00
Chris Roberts 8fc0f10420 Include ruby configuration 2020-01-14 11:19:42 -08:00
Chris Roberts 584bbb2c0f Add CI scripts and configuration
Provides scripts for building, storing, and releasing Vagrant
via builders. Includes updates for testing and removal of
deprecated CI configuration.
2020-01-13 12:41:28 -08:00
12 changed files with 12 additions and 34 deletions

View File

@ -13,22 +13,18 @@ jobs:
steps:
- name: Code Checkout
uses: actions/checkout@v1
- name: Set Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: '2.6'
- name: Build RubyGem
run: ./.ci/build.sh
working-directory: ${{github.workspace}}
env:
ASSETS_LONGTERM_PREFIX: elt
ASSETS_LONGTERM_PREFIX: ${{ secrets.ASSETS_LONGTERM_PREFIX }}
ASSETS_PRIVATE_BUCKET: ${{ secrets.ASSETS_PRIVATE_BUCKET }}
ASSETS_PRIVATE_LONGTERM: ${{ secrets.ASSETS_PRIVATE_LONGTERM }}
ASSETS_PRIVATE_SHORTTERM: ${{ secrets.ASSETS_PRIVATE_SHORTTERM }}
ASSETS_PUBLIC_BUCKET: ${{ secrets.ASSETS_PUBLIC_BUCKET }}
ASSETS_PUBLIC_LONGTERM: ${{ secrets.ASSETS_PUBLIC_LONGTERM }}
ASSETS_PUBLIC_SHORTTERM: ${{ secrets.ASSETS_PUBLIC_SHORTTERM }}
ASSETS_SHORTTERM_PREFIX: est
ASSETS_SHORTTERM_PREFIX: ${{ secrets.ASSETS_SHORTTERM_PREFIX }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
HASHIBOT_EMAIL: ${{ secrets.HASHIBOT_EMAIL }}

View File

@ -22,8 +22,8 @@ jobs:
run: ./.ci/release.sh
working-directory: ${{github.workspace}}
env:
ASSETS_LONGTERM_PREFIX: elt
ASSETS_PRIVATE_BUCKET: est
ASSETS_LONGTERM_PREFIX: ${{ secrets.ASSETS_LONGTERM_PREFIX }}
ASSETS_PRIVATE_BUCKET: ${{ secrets.ASSETS_PRIVATE_BUCKET }}
ASSETS_PRIVATE_LONGTERM: ${{ secrets.ASSETS_PRIVATE_LONGTERM }}
ASSETS_PRIVATE_SHORTTERM: ${{ secrets.ASSETS_PRIVATE_SHORTTERM }}
ASSETS_PUBLIC_BUCKET: ${{ secrets.ASSETS_PUBLIC_BUCKET }}

View File

@ -1,12 +0,0 @@
poll "closed_issue_locker" "locker" {
schedule = "0 50 1 * * *"
closed_for = "720h" # 30 days
max_issues = 500
sleep_between_issues = "5s"
message = <<-EOF
I'm going to lock this issue because it has been closed for _30 days_ . This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
EOF
}

View File

@ -4,12 +4,6 @@ FEATURES:
IMPROVEMENTS:
BUG FIXES:
## 2.2.7 (January 27, 2020)
IMPROVEMENTS:
- guest/opensuse: Check for basename hostname prior to setting hostname [GH-11170]
- host/linux: Check for modinfo in /sbin if it's not on PATH [GH-11178]
- core: Show guest name in hostname error message [GH-11175]

View File

@ -90,7 +90,7 @@ provider/virtualbox/basic
...
```
Then, run one of those components:
Then, run one of those components:
```
$ rake acceptance:run COMPONENTS="cli"

View File

@ -144,7 +144,7 @@ en:
unauthorized: |-
Invalid username or password. Please try again.
unexpected_error: |-
An unexpected error occurred: %{error}
An unexpected error occured: %{error}
check_logged_in: |-
You are already logged in.

View File

@ -1 +1 @@
2.2.8.dev
2.2.7.dev

View File

@ -5,7 +5,7 @@ set :vmware_utility_version, "1.0.7"
activate :hashicorp do |h|
h.name = "vagrant"
h.version = "2.2.7"
h.version = "2.2.6"
h.github_slug = "hashicorp/vagrant"
h.website_root = "website"
end

View File

@ -18,7 +18,7 @@ machine.
* `destination` - Path on the guest machine to upload file or directory.
* `source` - Path to file or directory on host to upload to guest machine.
* `source` - Path to file or diretory on host to upload to guest machine.
* `--compress` - Compress the file or directory before uploading to guest machine.

View File

@ -133,7 +133,7 @@ end
## Default Router
Depending on your setup, you may wish to manually override the default
router configuration. This is required if you need to access the Vagrant box from
router configuration. This is required if you need access the Vagrant box from
other networks over the public network. To do so, you can use a shell
provisioner script:

View File

@ -44,7 +44,7 @@ You can of course target other operating systems that do not have YUM by changin
### Running Ansible
The `playbook` option is strictly required by both Ansible provisioners ([`ansible`](/docs/provisioning/ansible.html) and [`ansible_local`](/docs/provisioning/ansible_local.html)), as illustrated in this basic `Vagrantfile` configuration:
The `playbook` option is strictly required by both Ansible provisioners ([`ansible`](/docs/provisioning/ansible.html) and [`ansible_local`](/docs/provisioning/ansible_local.html)), as illustrated in this basic Vagrantfile` configuration:
```ruby
Vagrant.configure("2") do |config|

View File

@ -23,7 +23,7 @@ here](/docs/vagrant-cloud/boxes/lifecycle.html).
## Vagrant Box Catalog and Discovery
Vagrant Cloud hosts a catalog of publicly available Vagrant Boxes. These are boxes
Vagrant Cloud hosts a catalog of publically available Vagrant Boxes. These are boxes
created by both HashiCorp and community contributions. You can find an owner of
a box by selecting their username in the URL or on the box page.