Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit 90d1a6b

Browse files
authored
Merge pull request Varying-Vagrant-Vagrants#2698 from Varying-Vagrant-Vagrants/remove-macos-github-testers
Remove macos testers on CI
2 parents 4ba78d6 + 2812d7c commit 90d1a6b

File tree

2 files changed

+2
-120
lines changed

2 files changed

+2
-120
lines changed

.github/workflows/vvv-provisioning.yml

-119
Original file line numberDiff line numberDiff line change
@@ -109,122 +109,3 @@ jobs:
109109
with:
110110
name: logs-on-docker
111111
path: "${{ github.workspace }}/log"
112-
113-
# This workflow contains a single job called "build"
114-
on-stable:
115-
name: MacOS 10.15 Stable Reprovision
116-
# The type of runner that the job will run on
117-
runs-on: macos-10.15
118-
119-
# Steps represent a sequence of tasks that will be executed as part of the job
120-
steps:
121-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
122-
- uses: actions/checkout@v4
123-
with:
124-
ref: stable
125-
126-
- name: Cache Vagrant boxes
127-
uses: actions/cache@v3
128-
with:
129-
path: ~/.vagrant.d/boxes
130-
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
131-
restore-keys: |
132-
${{ runner.os }}-vagrant-
133-
134-
- name: install goodhosts
135-
run: vagrant plugin install --local
136-
137-
- name: vagrant up (stable)
138-
run: vagrant up
139-
140-
- uses: actions/checkout@v4
141-
with:
142-
clean: false
143-
144-
- name: vagrant up (current branch)
145-
run: vagrant up --provision
146-
147-
- name: tests
148-
run: provision/tests/macos-tests.sh
149-
150-
- uses: actions/upload-artifact@v3
151-
if: ${{ always() }}
152-
with:
153-
name: logs-on-stable
154-
path: "${{ github.workspace }}/log"
155-
156-
on-develop:
157-
name: MacOS 10.15 Develop Reprovision
158-
# The type of runner that the job will run on
159-
runs-on: macos-10.15
160-
161-
# Steps represent a sequence of tasks that will be executed as part of the job
162-
steps:
163-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
164-
- uses: actions/checkout@v4
165-
with:
166-
ref: develop
167-
168-
- name: Cache Vagrant boxes
169-
uses: actions/cache@v3
170-
with:
171-
path: ~/.vagrant.d/boxes
172-
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
173-
restore-keys: |
174-
${{ runner.os }}-vagrant-
175-
176-
177-
- name: install goodhosts
178-
run: vagrant plugin install --local
179-
180-
- name: vagrant up (develop)
181-
run: vagrant up
182-
183-
- uses: actions/checkout@v4
184-
with:
185-
clean: false
186-
187-
- name: vagrant up (current branch)
188-
run: vagrant up --provision
189-
190-
- name: tests
191-
run: provision/tests/macos-tests.sh
192-
193-
- uses: actions/upload-artifact@v3
194-
if: ${{ always() }}
195-
with:
196-
name: logs-on-develop
197-
path: "${{ github.workspace }}/log"
198-
199-
on-clean:
200-
name: MacOS 10.15 Clean Provision
201-
# The type of runner that the job will run on
202-
runs-on: macos-10.15
203-
204-
# Steps represent a sequence of tasks that will be executed as part of the job
205-
steps:
206-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
207-
- uses: actions/checkout@v4
208-
209-
- name: Cache Vagrant boxes
210-
uses: actions/cache@v3
211-
with:
212-
path: ~/.vagrant.d/boxes
213-
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
214-
restore-keys: |
215-
${{ runner.os }}-vagrant-
216-
217-
- name: install goodhosts
218-
run: vagrant plugin install --local
219-
220-
- name: vagrant up (current branch)
221-
run: vagrant up
222-
223-
- name: tests
224-
run: provision/tests/macos-tests.sh
225-
226-
- uses: actions/upload-artifact@v3
227-
if: ${{ always() }}
228-
with:
229-
name: logs-on-clean
230-
path: "${{ github.workspace }}/log"

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permalink: /docs/en-US/changelog/
66

77
# Changelog
88

9-
## 3.13 ( 2023 December TBA )
9+
## 3.13 ( 2024 TBA )
1010

1111
### Enhancements
1212

@@ -21,6 +21,7 @@ permalink: /docs/en-US/changelog/
2121
### Bug Fixes
2222

2323
* The host file inside the VM was only adding sites with `127.0.0.1` addresses, now it adds the IPVv6 `::1` too ( #2689 )
24+
* Removed old MacOS PR workflows, no runners available ( #2698 )
2425

2526
## 3.12 ( 2023 August 3rd )
2627

0 commit comments

Comments
 (0)