Compare commits
8 Commits
master
...
build-test
Author | SHA1 | Date |
---|---|---|
Chris Roberts | 5b64a332ee | |
Chris Roberts | c397321998 | |
Chris Roberts | ed34959686 | |
Chris Roberts | 6dc4f04231 | |
Chris Roberts | 486a6161f4 | |
Chris Roberts | de60beec69 | |
Chris Roberts | 8fc0f10420 | |
Chris Roberts | 584bbb2c0f |
|
@ -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 }}
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -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
|
||||
}
|
|
@ -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]
|
||||
|
|
|
@ -90,7 +90,7 @@ provider/virtualbox/basic
|
|||
...
|
||||
```
|
||||
|
||||
Then, run one of those components:
|
||||
Then, run one of those components:
|
||||
|
||||
```
|
||||
$ rake acceptance:run COMPONENTS="cli"
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -1 +1 @@
|
|||
2.2.8.dev
|
||||
2.2.7.dev
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
||||
|
|
|
@ -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|
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in New Issue