Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove macos testers on CI #2698

Merged
merged 2 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 0 additions & 119 deletions .github/workflows/vvv-provisioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,122 +109,3 @@ jobs:
with:
name: logs-on-docker
path: "${{ github.workspace }}/log"

# This workflow contains a single job called "build"
on-stable:
name: MacOS 10.15 Stable Reprovision
# The type of runner that the job will run on
runs-on: macos-10.15

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
ref: stable

- name: Cache Vagrant boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
restore-keys: |
${{ runner.os }}-vagrant-

- name: install goodhosts
run: vagrant plugin install --local

- name: vagrant up (stable)
run: vagrant up

- uses: actions/checkout@v4
with:
clean: false

- name: vagrant up (current branch)
run: vagrant up --provision

- name: tests
run: provision/tests/macos-tests.sh

- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: logs-on-stable
path: "${{ github.workspace }}/log"

on-develop:
name: MacOS 10.15 Develop Reprovision
# The type of runner that the job will run on
runs-on: macos-10.15

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
ref: develop

- name: Cache Vagrant boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
restore-keys: |
${{ runner.os }}-vagrant-


- name: install goodhosts
run: vagrant plugin install --local

- name: vagrant up (develop)
run: vagrant up

- uses: actions/checkout@v4
with:
clean: false

- name: vagrant up (current branch)
run: vagrant up --provision

- name: tests
run: provision/tests/macos-tests.sh

- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: logs-on-develop
path: "${{ github.workspace }}/log"

on-clean:
name: MacOS 10.15 Clean Provision
# The type of runner that the job will run on
runs-on: macos-10.15

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4

- name: Cache Vagrant boxes
uses: actions/cache@v3
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
restore-keys: |
${{ runner.os }}-vagrant-

- name: install goodhosts
run: vagrant plugin install --local

- name: vagrant up (current branch)
run: vagrant up

- name: tests
run: provision/tests/macos-tests.sh

- uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: logs-on-clean
path: "${{ github.workspace }}/log"
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ permalink: /docs/en-US/changelog/

# Changelog

## 3.13 ( 2023 December TBA )
## 3.13 ( 2024 TBA )

### Enhancements

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

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

## 3.12 ( 2023 August 3rd )

Expand Down