Update to ungoogled-chromium 115.0.5790.114 #168
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build macOS binaries of Ungoogled Chromium | |
on: | |
push: | |
paths: | |
- 'patches/**' | |
- 'downloads.ini' | |
- 'revision.txt' | |
- 'flags.macos.gn' | |
- '!build.sh' | |
- '!README.md' | |
- '!LICENSE' | |
- '!devutils/**' | |
- '.github/scripts/force_build.txt' | |
pull_request: | |
paths: | |
- 'patches/**' | |
- 'downloads.ini' | |
- 'revision.txt' | |
- 'flags.macos.gn' | |
- '!build.sh' | |
- '!README.md' | |
- '!LICENSE' | |
- '!devutils/**' | |
# alternatively use on.push.branches: release/* | |
jobs: | |
build_job_01: | |
name: Start Building Ungoogled-Chromium for macOS | |
runs-on: macos-13 | |
outputs: | |
status: ${{ steps.build.outputs.status }} | |
steps: | |
- uses: actions/checkout@v3 | |
name: Clone repository | |
with: | |
submodules: true | |
- name: Copy GitHub specific scripts to git-root folder | |
run: cp -va ./.github/scripts/ ./ ; date +%s > ./epoch_job_start.txt | |
- name: Disable Spotlight | |
run: sudo mdutil -a -i off | |
- name: Run xcode-select | |
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app | |
- name: Install dependencies | |
run: brew install coreutils ninja | |
- name: Download, unpack, and prepare for building | |
run: ./github_before_build.sh | tee -a github_actions_build.log | |
- name: Build | |
id: build | |
run: ./github_build.sh 2>&1 | tee -a github_actions_build.log | |
- name: Prepare archive of build as artifact | |
id: bake | |
run: ./github_prepare_artifacts.sh | tee -a github_actions_upload.log | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_artifact | |
path: upload_part_build/ | |
- name: Upload logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_logs | |
path: upload_logs/ | |
- name: Upload disk-image as artifact after build | |
if: ${{ steps.build.outputs.status == 'finished' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.bake.outputs.file_name }} | |
path: ./release_asset/${{ steps.bake.outputs.file_name }} | |
- name: Create Release | |
if: ${{ steps.build.outputs.status == 'finished' && github.event_name != 'pull_request' }} | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ steps.bake.outputs.release_tag_version }} | |
name: ${{ steps.bake.outputs.release_tag_version }} macOS ungoogled-chromium binary | |
body_path: ./github_release_text.md | |
draft: false | |
prerelease: false | |
files: ./release_asset/${{ steps.bake.outputs.file_name }} | |
build_job_02: | |
name: Resuming Building Ungoogled-Chromium for macOS | |
runs-on: macos-13 | |
needs: build_job_01 | |
if: ${{needs.build_job_01.outputs.status == 'running'}} | |
outputs: | |
status: ${{ steps.build.outputs.status }} | |
steps: | |
- uses: actions/checkout@v3 | |
name: Clone repository | |
with: | |
submodules: true | |
- name: Copy GitHub specific scripts to git-root folder | |
run: cp -va ./.github/scripts/ ./ ; date +%s > ./epoch_job_start.txt | |
- name: Disable spotlight | |
run: sudo mdutil -a -i off | |
- name: Run xcode-select | |
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app | |
- name: Download build | |
uses: actions/download-artifact@v3 | |
with: | |
name: github_build_artifact | |
- name: Install dependencies | |
run: brew install coreutils ninja | |
- name: Unpack archive of build | |
run: ./github_unpack_archive.sh | |
- name: Resume Build | |
id: build | |
run: ./github_build.sh 2>&1 | tee -a github_actions_build.log | |
- name: Prepare archive of build as artifact | |
id: bake | |
run: ./github_prepare_artifacts.sh | tee -a github_actions_upload.log | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_artifact | |
path: upload_part_build/ | |
- name: Upload logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_logs | |
path: upload_logs/ | |
- name: Upload disk-image as artifact after build | |
if: ${{ steps.build.outputs.status == 'finished' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.bake.outputs.file_name }} | |
path: ./release_asset/${{ steps.bake.outputs.file_name }} | |
- name: Create Release | |
if: ${{ steps.build.outputs.status == 'finished' && github.event_name != 'pull_request' }} | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ steps.bake.outputs.release_tag_version }} | |
name: ${{ steps.bake.outputs.release_tag_version }} macOS ungoogled-chromium binary | |
body_path: ./github_release_text.md | |
draft: false | |
prerelease: false | |
files: ./release_asset/${{ steps.bake.outputs.file_name }} | |
build_job_03: | |
name: Further Resuming Building Ungoogled-Chromium for macOS | |
runs-on: macos-13 | |
needs: build_job_02 | |
if: ${{needs.build_job_02.outputs.status == 'running'}} | |
outputs: | |
status: ${{ steps.build.outputs.status }} | |
steps: | |
- uses: actions/checkout@v3 | |
name: Clone repository | |
with: | |
submodules: true | |
- name: Copy GitHub specific scripts to git-root folder | |
run: cp -va ./.github/scripts/ ./ ; date +%s > ./epoch_job_start.txt | |
- name: Disable spotlight | |
run: sudo mdutil -a -i off | |
- name: Run xcode-select | |
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app | |
- name: Download resumed build | |
uses: actions/download-artifact@v3 | |
with: | |
name: github_build_artifact | |
- name: Install dependencies | |
run: brew install coreutils ninja | |
- name: Unpack archive of build | |
run: ./github_unpack_archive.sh | |
- name: Resume Build | |
id: build | |
run: ./github_build.sh 2>&1 | tee -a github_actions_build.log | |
- name: Prepare archive of build as artifact | |
id: bake | |
run: ./github_prepare_artifacts.sh | tee -a github_actions_upload.log | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_artifact | |
path: upload_part_build/ | |
- name: Upload logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_logs | |
path: upload_logs/ | |
- name: Upload disk-image as artifact after build | |
if: ${{ steps.build.outputs.status == 'finished' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.bake.outputs.file_name }} | |
path: ./release_asset/${{ steps.bake.outputs.file_name }} | |
- name: Create Release | |
if: ${{ steps.build.outputs.status == 'finished' && github.event_name != 'pull_request' }} | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ steps.bake.outputs.release_tag_version }} | |
name: ${{ steps.bake.outputs.release_tag_version }} macOS ungoogled-chromium binary | |
body_path: ./github_release_text.md | |
draft: false | |
prerelease: false | |
files: ./release_asset/${{ steps.bake.outputs.file_name }} | |
build_job_04: | |
name: Further Resuming Building Ungoogled-Chromium for macOS | |
runs-on: macos-13 | |
needs: build_job_03 | |
if: ${{needs.build_job_03.outputs.status == 'running'}} | |
outputs: | |
status: ${{ steps.build.outputs.status }} | |
steps: | |
- uses: actions/checkout@v3 | |
name: Clone repository | |
with: | |
submodules: true | |
- name: Copy GitHub specific scripts to git-root folder | |
run: cp -va ./.github/scripts/ ./ ; date +%s > ./epoch_job_start.txt | |
- name: Disable spotlight | |
run: sudo mdutil -a -i off | |
- name: Run xcode-select | |
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app | |
- name: Download resumed build | |
uses: actions/download-artifact@v3 | |
with: | |
name: github_build_artifact | |
- name: Install dependencies | |
run: brew install coreutils ninja | |
- name: Unpack archive of build | |
run: ./github_unpack_archive.sh | |
- name: Resume Build | |
id: build | |
run: ./github_build.sh 2>&1 | tee -a github_actions_build.log | |
- name: Prepare archive of build as artifact | |
id: bake | |
run: ./github_prepare_artifacts.sh | tee -a github_actions_upload.log | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_artifact | |
path: upload_part_build/ | |
- name: Upload logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_logs | |
path: upload_logs/ | |
- name: Upload disk-image as artifact after build | |
if: ${{ steps.build.outputs.status == 'finished' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.bake.outputs.file_name }} | |
path: ./release_asset/${{ steps.bake.outputs.file_name }} | |
- name: Create Release | |
if: ${{ steps.build.outputs.status == 'finished' && github.event_name != 'pull_request' }} | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ steps.bake.outputs.release_tag_version }} | |
name: ${{ steps.bake.outputs.release_tag_version }} macOS ungoogled-chromium binary | |
body_path: ./github_release_text.md | |
draft: false | |
prerelease: false | |
files: ./release_asset/${{ steps.bake.outputs.file_name }} | |
build_job_05: | |
name: Further Resuming Building Ungoogled-Chromium for macOS | |
runs-on: macos-13 | |
needs: build_job_04 | |
if: ${{needs.build_job_04.outputs.status == 'running'}} | |
outputs: | |
status: ${{ steps.build.outputs.status }} | |
steps: | |
- uses: actions/checkout@v3 | |
name: Clone repository | |
with: | |
submodules: true | |
- name: Copy GitHub specific scripts to git-root folder | |
run: cp -va ./.github/scripts/ ./ ; date +%s > ./epoch_job_start.txt | |
- name: Disable spotlight | |
run: sudo mdutil -a -i off | |
- name: Run xcode-select | |
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app | |
- name: Download resumed build | |
uses: actions/download-artifact@v3 | |
with: | |
name: github_build_artifact | |
- name: Install dependencies | |
run: brew install coreutils ninja | |
- name: Unpack archive of build | |
run: ./github_unpack_archive.sh | |
- name: Resume Build | |
id: build | |
run: ./github_build.sh 2>&1 | tee -a github_actions_build.log | |
- name: Prepare archive of build as artifact | |
id: bake | |
run: ./github_prepare_artifacts.sh | tee -a github_actions_upload.log | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_artifact | |
path: upload_part_build/ | |
- name: Upload logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_logs | |
path: upload_logs/ | |
- name: Upload disk-image as artifact after build | |
if: ${{ steps.build.outputs.status == 'finished' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.bake.outputs.file_name }} | |
path: ./release_asset/${{ steps.bake.outputs.file_name }} | |
- name: Create Release | |
if: ${{ steps.build.outputs.status == 'finished' && github.event_name != 'pull_request' }} | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ steps.bake.outputs.release_tag_version }} | |
name: ${{ steps.bake.outputs.release_tag_version }} macOS ungoogled-chromium binary | |
body_path: ./github_release_text.md | |
draft: false | |
prerelease: false | |
files: ./release_asset/${{ steps.bake.outputs.file_name }} | |
build_job_06: | |
name: Further Resuming Building Ungoogled-Chromium for macOS | |
runs-on: macos-13 | |
needs: build_job_05 | |
if: ${{needs.build_job_05.outputs.status == 'running'}} | |
outputs: | |
status: ${{ steps.build.outputs.status }} | |
steps: | |
- uses: actions/checkout@v3 | |
name: Clone repository | |
with: | |
submodules: true | |
- name: Copy GitHub specific scripts to git-root folder | |
run: cp -va ./.github/scripts/ ./ ; date +%s > ./epoch_job_start.txt | |
- name: Disable spotlight | |
run: sudo mdutil -a -i off | |
- name: Run xcode-select | |
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app | |
- name: Download resumed build | |
uses: actions/download-artifact@v3 | |
with: | |
name: github_build_artifact | |
- name: Install dependencies | |
run: brew install coreutils ninja | |
- name: Unpack archive of build | |
run: ./github_unpack_archive.sh | |
- name: Resume Build | |
id: build | |
run: ./github_build.sh 2>&1 | tee -a github_actions_build.log | |
- name: Prepare archive of build as artifact | |
id: bake | |
run: ./github_prepare_artifacts.sh | tee -a github_actions_upload.log | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_artifact | |
path: upload_part_build/ | |
- name: Upload logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_logs | |
path: upload_logs/ | |
- name: Upload disk-image as artifact after build | |
if: ${{ steps.build.outputs.status == 'finished' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.bake.outputs.file_name }} | |
path: ./release_asset/${{ steps.bake.outputs.file_name }} | |
- name: Create Release | |
if: ${{ steps.build.outputs.status == 'finished' && github.event_name != 'pull_request' }} | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ steps.bake.outputs.release_tag_version }} | |
name: ${{ steps.bake.outputs.release_tag_version }} macOS ungoogled-chromium binary | |
body_path: ./github_release_text.md | |
draft: false | |
prerelease: false | |
files: ./release_asset/${{ steps.bake.outputs.file_name }} | |
build_job_07: | |
name: Further Resuming Building Ungoogled-Chromium for macOS | |
runs-on: macos-13 | |
needs: build_job_06 | |
if: ${{needs.build_job_06.outputs.status == 'running'}} | |
outputs: | |
status: ${{ steps.build.outputs.status }} | |
steps: | |
- uses: actions/checkout@v3 | |
name: Clone repository | |
with: | |
submodules: true | |
- name: Copy GitHub specific scripts to git-root folder | |
run: cp -va ./.github/scripts/ ./ ; date +%s > ./epoch_job_start.txt | |
- name: Disable spotlight | |
run: sudo mdutil -a -i off | |
- name: Run xcode-select | |
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app | |
- name: Download resumed build | |
uses: actions/download-artifact@v3 | |
with: | |
name: github_build_artifact | |
- name: Install dependencies | |
run: brew install coreutils ninja | |
- name: Unpack archive of build | |
run: ./github_unpack_archive.sh | |
- name: Resume Build | |
id: build | |
run: ./github_build.sh 2>&1 | tee -a github_actions_build.log | |
- name: Prepare archive of build as artifact | |
id: bake | |
run: ./github_prepare_artifacts.sh | tee -a github_actions_upload.log | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_artifact | |
path: upload_part_build/ | |
- name: Upload logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_logs | |
path: upload_logs/ | |
- name: Upload disk-image as artifact after build | |
if: ${{ steps.build.outputs.status == 'finished' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.bake.outputs.file_name }} | |
path: ./release_asset/${{ steps.bake.outputs.file_name }} | |
- name: Create Release | |
if: ${{ steps.build.outputs.status == 'finished' && github.event_name != 'pull_request' }} | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ steps.bake.outputs.release_tag_version }} | |
name: ${{ steps.bake.outputs.release_tag_version }} macOS ungoogled-chromium binary | |
body_path: ./github_release_text.md | |
draft: false | |
prerelease: false | |
files: ./release_asset/${{ steps.bake.outputs.file_name }} | |
build_job_08: | |
name: Further Resuming Building Ungoogled-Chromium for macOS | |
runs-on: macos-13 | |
needs: build_job_07 | |
if: ${{needs.build_job_07.outputs.status == 'running'}} | |
outputs: | |
status: ${{ steps.build.outputs.status }} | |
steps: | |
- uses: actions/checkout@v3 | |
name: Clone repository | |
with: | |
submodules: true | |
- name: Copy GitHub specific scripts to git-root folder | |
run: cp -va ./.github/scripts/ ./ ; date +%s > ./epoch_job_start.txt | |
- name: Disable spotlight | |
run: sudo mdutil -a -i off | |
- name: Run xcode-select | |
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app | |
- name: Download resumed build | |
uses: actions/download-artifact@v3 | |
with: | |
name: github_build_artifact | |
- name: Install dependencies | |
run: brew install coreutils ninja | |
- name: Unpack archive of build | |
run: ./github_unpack_archive.sh | |
- name: Resume Build | |
id: build | |
run: ./github_build.sh 2>&1 | tee -a github_actions_build.log | |
- name: Prepare archive of build as artifact | |
id: bake | |
run: ./github_prepare_artifacts.sh | tee -a github_actions_upload.log | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_artifact | |
path: upload_part_build/ | |
- name: Upload logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_logs | |
path: upload_logs/ | |
- name: Upload disk-image as artifact after build | |
if: ${{ steps.build.outputs.status == 'finished' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.bake.outputs.file_name }} | |
path: ./release_asset/${{ steps.bake.outputs.file_name }} | |
- name: Create Release | |
if: ${{ steps.build.outputs.status == 'finished' && github.event_name != 'pull_request' }} | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ steps.bake.outputs.release_tag_version }} | |
name: ${{ steps.bake.outputs.release_tag_version }} macOS ungoogled-chromium binary | |
body_path: ./github_release_text.md | |
draft: false | |
prerelease: false | |
files: ./release_asset/${{ steps.bake.outputs.file_name }} | |
build_job_09: | |
name: Further Resuming Building Ungoogled-Chromium for macOS | |
runs-on: macos-13 | |
needs: build_job_08 | |
if: ${{needs.build_job_08.outputs.status == 'running'}} | |
outputs: | |
status: ${{ steps.build.outputs.status }} | |
steps: | |
- uses: actions/checkout@v3 | |
name: Clone repository | |
with: | |
submodules: true | |
- name: Copy GitHub specific scripts to git-root folder | |
run: cp -va ./.github/scripts/ ./ ; date +%s > ./epoch_job_start.txt | |
- name: Disable spotlight | |
run: sudo mdutil -a -i off | |
- name: Run xcode-select | |
run: sudo xcode-select --switch /Applications/Xcode_14.3.1.app | |
- name: Download resumed build | |
uses: actions/download-artifact@v3 | |
with: | |
name: github_build_artifact | |
- name: Install dependencies | |
run: brew install coreutils ninja | |
- name: Unpack archive of build | |
run: ./github_unpack_archive.sh | |
- name: Resume Build | |
id: build | |
run: ./github_build.sh 2>&1 | tee -a github_actions_build.log | |
- name: Prepare archive of build as artifact | |
id: bake | |
run: ./github_prepare_artifacts.sh | tee -a github_actions_upload.log | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_artifact | |
path: upload_part_build/ | |
- name: Upload logs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: github_build_logs | |
path: upload_logs/ | |
- name: Upload disk-image as artifact after build | |
if: ${{ steps.build.outputs.status == 'finished' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.bake.outputs.file_name }} | |
path: ./release_asset/${{ steps.bake.outputs.file_name }} | |
- name: Create Release | |
if: ${{ steps.build.outputs.status == 'finished' && github.event_name != 'pull_request' }} | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag_name: ${{ steps.bake.outputs.release_tag_version }} | |
name: ${{ steps.bake.outputs.release_tag_version }} macOS ungoogled-chromium binary | |
body_path: ./github_release_text.md | |
draft: false | |
prerelease: false | |
files: ./release_asset/${{ steps.bake.outputs.file_name }} |