From f438ef39e40947f0c9054f7409020ded449e787c Mon Sep 17 00:00:00 2001 From: Tom J Nowell Date: Wed, 10 Jan 2024 15:33:38 +0000 Subject: [PATCH 1/2] remove macos testers on CI the old versions no longer have runners and we need to upgrade but newer versions are missing necessary software, we can re-add them later once they're fixed and useful again --- .github/workflows/vvv-provisioning.yml | 119 ------------------------- 1 file changed, 119 deletions(-) diff --git a/.github/workflows/vvv-provisioning.yml b/.github/workflows/vvv-provisioning.yml index 6f0c74469..0ea2a8782 100644 --- a/.github/workflows/vvv-provisioning.yml +++ b/.github/workflows/vvv-provisioning.yml @@ -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" From 2812d7c64c0fc74fd0feb841f3b043d66d47a7f0 Mon Sep 17 00:00:00 2001 From: Tom J Nowell Date: Wed, 10 Jan 2024 15:35:05 +0000 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8af23fcd..b950caea2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ permalink: /docs/en-US/changelog/ # Changelog -## 3.13 ( 2023 December TBA ) +## 3.13 ( 2024 TBA ) ### Enhancements @@ -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 )