| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- # This workflow tries to build iOS app if any changes detected on the iOS source tree,
- # ensuring at least it builds.
- name: CI-iOS
- on:
- push:
- branches: [master]
- paths:
- - 'ios/App'
- - package.json
- pull_request:
- branches: [master]
- paths:
- - 'ios/App'
- - package.json
- env:
- CLOJURE_VERSION: '1.11.1.1413'
- NODE_VERSION: '20'
- JAVA_VERSION: '11'
- jobs:
- build-app:
- runs-on: macos-13
- steps:
- - name: Check out Git repository
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- - name: Install Node.js, NPM and Yarn
- uses: actions/setup-node@v3
- with:
- node-version: ${{ env.NODE_VERSION }}
- - name: Get yarn cache directory path
- id: yarn-cache-dir-path
- run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- - name: Cache yarn cache directory
- uses: actions/cache@v3
- id: yarn-cache
- with:
- path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
- key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
- restore-keys: |
- ${{ runner.os }}-yarn-
- - name: Setup Java JDK
- uses: actions/setup-java@v3
- with:
- distribution: 'zulu'
- java-version: ${{ env.JAVA_VERSION }}
- - name: Cache clojure deps
- uses: actions/cache@v3
- with:
- path: |
- ~/.m2/repository
- ~/.gitlibs
- key: ${{ runner.os }}-clojure-lib-${{ hashFiles('**/deps.edn') }}
- - name: Setup clojure
- uses: DeLaGuardo/[email protected]
- with:
- cli: ${{ env.CLOJURE_VERSION }}
- - name: Set Build Environment Variables
- run: |
- echo "ENABLE_FILE_SYNC_PRODUCTION=true" >> $GITHUB_ENV
- - name: Compile CLJS
- run: yarn install && yarn release-app
- - name: Sync static build files
- run: rsync -avz --exclude node_modules --exclude '*.js.map' --exclude android ./static/ ./public/static/
- - name: Prepare iOS build
- run: npx cap sync ios
- - name: List iOS build targets
- run: xcodebuild -list -workspace App.xcworkspace
- working-directory: ./ios/App
- - name: Build iOS App
- run: |
- xcodebuild -workspace App.xcworkspace -scheme Logseq -destination generic/platform=iOS build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
- working-directory: ./ios/App
|