mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-27 23:47:39 +01:00
ci: updated PR workflow to reflect latest
This commit is contained in:
132
.github/workflows/pr.yml
vendored
132
.github/workflows/pr.yml
vendored
@@ -1,98 +1,90 @@
|
|||||||
name: Pull Request SideStore build
|
name: Pull Request SideStore build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
# types: [opened, synchronize, reopened, ready_for_review, converted_to_draft]
|
# types: [opened, synchronize, reopened, ready_for_review, converted_to_draft]
|
||||||
types: [opened, synchronize, reopened, ready_for_review]
|
types: [opened, synchronize, reopened, ready_for_review]
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: pr-${{ github.event.pull_request.number }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build and upload SideStore
|
name: Build and upload SideStore
|
||||||
if: ${{ github.event.pull_request.draft == false }}
|
if: ${{ github.event.pull_request.draft == false }}
|
||||||
strategy:
|
runs-on: macos-26
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- os: 'macos-14'
|
|
||||||
version: '16.1'
|
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- uses: actions/checkout@v4
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
fetch-depth: 1 # shallow clone just for PR
|
||||||
|
|
||||||
- name: Install dependencies
|
- run: brew install ldid xcbeautify
|
||||||
run: brew install ldid
|
|
||||||
|
|
||||||
- name: Install xcbeautify
|
- name: Setup Env
|
||||||
run: brew install xcbeautify
|
run: |
|
||||||
|
MARKETING_VERSION=$(python3 scripts/ci/workflow.py get-marketing-version)
|
||||||
- name: Add PR suffix to version
|
SHORT_COMMIT=$(git rev-parse --short ${{ github.event.pull_request.head.sha }})
|
||||||
run: sed -e "/MARKETING_VERSION = .*/s/\$/-pr.${{ github.event.pull_request.number }}+$(git rev-parse --short ${COMMIT:-HEAD})/" -i '' Build.xcconfig
|
QUALIFIED_VERSION="${MARKETING_VERSION}-pr.${{ github.event.pull_request.number }}+${SHORT_COMMIT}"
|
||||||
env:
|
python3 scripts/ci/workflow.py set-marketing-version "$QUALIFIED_VERSION"
|
||||||
COMMIT: ${{ github.event.pull_request.head.sha }}
|
echo "SHORT_COMMIT=$SHORT_COMMIT" | tee -a $GITHUB_ENV
|
||||||
|
echo "MARKETING_VERSION=$QUALIFIED_VERSION" | tee -a $GITHUB_ENV
|
||||||
- name: Get version
|
|
||||||
id: version
|
|
||||||
run: echo "version=$(grep MARKETING_VERSION Build.xcconfig | sed -e "s/MARKETING_VERSION = //g")" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Echo version
|
|
||||||
run: echo "${{ steps.version.outputs.version }}"
|
|
||||||
|
|
||||||
- name: Setup Xcode
|
- name: Setup Xcode
|
||||||
uses: maxim-lobanov/setup-xcode@v1.6.0
|
uses: maxim-lobanov/setup-xcode@v1.6.0
|
||||||
with:
|
with:
|
||||||
xcode-version: ${{ matrix.version }}
|
xcode-version: "26.2"
|
||||||
|
|
||||||
- name: Cache Build
|
- name: Restore Cache (exact)
|
||||||
uses: irgaly/xcode-cache@v1
|
id: xcode-cache-exact
|
||||||
|
uses: actions/cache/restore@v3
|
||||||
with:
|
with:
|
||||||
key: xcode-cache-deriveddata-${{ github.sha }}
|
path: |
|
||||||
restore-keys: xcode-cache-deriveddata-
|
~/Library/Developer/Xcode/DerivedData
|
||||||
swiftpm-cache-key: xcode-cache-sourcedata-${{ github.sha }}
|
~/Library/Caches/org.swift.swiftpm
|
||||||
swiftpm-cache-restore-keys: |
|
key: xcode-build-cache-${{ github.ref_name }}-${{ github.sha }}
|
||||||
xcode-cache-sourcedata-
|
|
||||||
|
|
||||||
- name: List Files and derived data
|
- name: Restore Cache (last)
|
||||||
|
if: steps.xcode-cache-exact.outputs.cache-hit != 'true'
|
||||||
|
id: xcode-cache-fallback
|
||||||
|
uses: actions/cache/restore@v3
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/Library/Developer/Xcode/DerivedData
|
||||||
|
~/Library/Caches/org.swift.swiftpm
|
||||||
|
key: xcode-build-cache-${{ github.ref_name }}-
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
env:
|
||||||
|
BUILD_LOG_ZIP_PASSWORD: ${{ secrets.BUILD_LOG_ZIP_PASSWORD }}
|
||||||
run: |
|
run: |
|
||||||
echo ">>>>>>>>> Workdir <<<<<<<<<<"
|
python3 scripts/ci/workflow.py build; STATUS=$?
|
||||||
ls -la .
|
python3 scripts/ci/workflow.py encrypt-build
|
||||||
echo ""
|
mv SideStore.ipa SideStore-${{ env.MARKETING_VERSION }}.ipa
|
||||||
|
exit $STATUS
|
||||||
|
|
||||||
echo ">>>>>>>>> SideStore <<<<<<<<<<"
|
- name: Save Cache
|
||||||
find SideStore -maxdepth 2 -exec ls -ld {} + || true # List contents if directory exists
|
if: ${{ steps.xcode-cache-fallback.outputs.cache-hit != 'true' }}
|
||||||
echo ""
|
uses: actions/cache/save@v3
|
||||||
|
|
||||||
echo ">>>>>>>>> Dependencies <<<<<<<<<<"
|
|
||||||
find Dependencies -maxdepth 2 -exec ls -ld {} + || true # List contents if directory exists
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
echo ">>>>>>>>> Xcode-Derived-Data <<<<<<<<<<"
|
|
||||||
ls -la ~/Library/Developer/Xcode/DerivedData || true # List contents if directory exists
|
|
||||||
echo ""
|
|
||||||
|
|
||||||
|
|
||||||
- name: Build SideStore
|
|
||||||
run: NSUnbufferedIO=YES make build 2>&1 | xcbeautify --renderer github-actions && exit ${PIPESTATUS[0]}
|
|
||||||
|
|
||||||
- name: Fakesign app
|
|
||||||
run: make fakesign
|
|
||||||
|
|
||||||
- name: Convert to IPA
|
|
||||||
run: make ipa
|
|
||||||
|
|
||||||
- name: Add version to IPA file name
|
|
||||||
run: mv SideStore.ipa SideStore-${{ steps.version.outputs.version }}.ipa
|
|
||||||
|
|
||||||
- name: Upload SideStore.ipa Artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
with:
|
||||||
name: SideStore-${{ steps.version.outputs.version }}.ipa
|
path: |
|
||||||
path: SideStore-${{ steps.version.outputs.version }}.ipa
|
~/Library/Developer/Xcode/DerivedData
|
||||||
|
~/Library/Caches/org.swift.swiftpm
|
||||||
|
key: xcode-build-cache-${{ github.ref_name }}-${{ github.sha }}
|
||||||
|
|
||||||
- name: Upload *.dSYM Artifact
|
- uses: actions/upload-artifact@v4
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
with:
|
||||||
name: SideStore-${{ steps.version.outputs.version }}-dSYM
|
name: encrypted-build-logs-${{ env.MARKETING_VERSION }}.zip
|
||||||
path: ./SideStore.xcarchive/dSYMs/*
|
path: encrypted-build-logs.zip
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: SideStore-${{ env.MARKETING_VERSION }}.ipa
|
||||||
|
path: SideStore-${{ env.MARKETING_VERSION }}.ipa
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: SideStore-${{ env.MARKETING_VERSION }}-dSYMs.zip
|
||||||
|
path: SideStore.dSYMs.zip
|
||||||
|
|||||||
Reference in New Issue
Block a user