mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-02 02:37:15 +00:00
84 lines
2.9 KiB
YAML
84 lines
2.9 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
- '!dependabot/**'
|
|
pull_request:
|
|
merge_group:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- image: macos-12
|
|
platform: macos
|
|
runs-on: ${{ matrix.image }}
|
|
env:
|
|
CI_BUILD_KEY: ${{ secrets.CI_BUILD_KEY }}
|
|
steps:
|
|
- name: Setup tmate session
|
|
uses: mxschmitt/action-tmate@v3
|
|
env:
|
|
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
|
|
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
fetch-depth: 0
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version-file: .github/python-version.txt
|
|
- if: matrix.platform == 'windows'
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: release/installbuilder/setup
|
|
key: installbuilder
|
|
- run: pip install .[dev] # pyinstaller 5.9 does not like pyproject.toml + editable installs.
|
|
|
|
# macOS x64. Due to GHA limitations, we are currently building the Apple Silicon app bundle outside of CI.
|
|
- if: matrix.platform == 'macos' && github.repository == 'mitmproxy/mitmproxy'
|
|
&& (startsWith(github.ref, 'refs/heads/') || startsWith(github.ref, 'refs/tags/'))
|
|
id: keychain
|
|
uses: apple-actions/import-codesign-certs@5565bb656f60c98c8fc515f3444dd8db73545dc2
|
|
with:
|
|
keychain: ${{ runner.temp }}/temp
|
|
p12-file-base64: ${{ secrets.APPLE_CERTIFICATE }}
|
|
p12-password: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
|
|
- if: matrix.platform == 'macos' && github.repository == 'mitmproxy/mitmproxy'
|
|
&& (startsWith(github.ref, 'refs/heads/') || startsWith(github.ref, 'refs/tags/'))
|
|
run: |
|
|
python -u release/build.py macos-app \
|
|
--keychain "${{ runner.temp }}/temp.keychain" \
|
|
--team-id "S8XHQB96PW" \
|
|
--apple-id "${{ secrets.APPLE_ID }}" \
|
|
--password "${{ secrets.APPLE_APP_PASSWORD }}"
|
|
|
|
# Linux
|
|
- if: matrix.platform == 'linux'
|
|
run: python -u release/build.py standalone-binaries wheel
|
|
|
|
# Windows
|
|
- if: matrix.platform == 'windows'
|
|
run: python -u release/build.py standalone-binaries
|
|
- if: matrix.platform == 'windows' && github.repository == 'mitmproxy/mitmproxy' &&
|
|
(github.ref == 'refs/heads/citest' || startsWith(github.ref, 'refs/tags/'))
|
|
run: python -u release/build.py --dirty installbuilder-installer msix-installer
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
# artifacts must have different names, see https://github.com/actions/upload-artifact/issues/24
|
|
name: binaries.${{ matrix.platform }}
|
|
path: |
|
|
release/dist
|