Skip to content

Commit

Permalink
adding condition to enforce
Browse files Browse the repository at this point in the history
  • Loading branch information
ruisebas committed Aug 30, 2023
1 parent 6cb1996 commit b75da2b
Showing 1 changed file with 34 additions and 23 deletions.
57 changes: 34 additions & 23 deletions .github/workflows/build_amplify_swift_for_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:

permissions:
contents: read
actions: write

concurrency:
group: ${{ inputs.identifier || github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -26,37 +27,47 @@ jobs:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 #v3.5.3
with:
persist-credentials: false
- name: Attempt to restore dependencies cache
id: cache-packages
timeout-minutes: 4
continue-on-error: true
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
with:
path: ~/Library/Developer/Xcode/DerivedData/Amplify
key: amplify-packages-${{ hashFiles('Package.resolved') }}
restore-keys: |
amplify-packages-
# - name: Attempt to restore dependencies cache
# id: cache-packages
# timeout-minutes: 4
# continue-on-error: true
# uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
# with:
# path: ~/Library/Developer/Xcode/DerivedData/Amplify
# key: amplify-packages-${{ hashFiles('Package.resolved') }}
# restore-keys: |
# amplify-packages-
- name: Restore the build cache
id: cache-build
timeout-minutes: 4
continue-on-error: true
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
with:
path: ${{ github.workspace }}/Build
key: amplify-iOS-latest-build-main
- name: Build Amplify Swift for iOS
uses: ./.github/composite_actions/run_xcodebuild
with:
scheme: Amplify-Package
destination: 'platform=iOS Simulator,name=iPhone 14,OS=16.4'
xcode_path: '/Applications/Xcode_14.3.app'
disable_package_resolution: ${{ steps.cache-packages.outputs.cache-hit }}
build_for_testing: true
other_flags: '-derivedDataPath Build -clonedSourcePackagesDirPath ~/Library/Developer/Xcode/DerivedData/Amplify'
- name: Enforce a cache update
# - name: Build Amplify Swift for iOS
# uses: ./.github/composite_actions/run_xcodebuild
# with:
# scheme: Amplify-Package
# destination: 'platform=iOS Simulator,name=iPhone 14,OS=16.4'
# xcode_path: '/Applications/Xcode_14.3.app'
# disable_package_resolution: ${{ steps.cache-packages.outputs.cache-hit }}
# build_for_testing: true
# other_flags: '-derivedDataPath Build -clonedSourcePackagesDirPath ~/Library/Developer/Xcode/DerivedData/Amplify'
- name: Delete the old build cache
if: steps.cache-build.outputs.cache-hit
env:
GH_TOKEN: ${{ github.token }}
continue-on-error: true
run: |
CACHE_KEY="amplify-iOS-latest-build-$GITHUB_SHA"
echo "STATE_CACHE_RESULT=${CACHE_KEY}" >> $GITHUB_ENV
gh extension install actions/gh-actions-cache
gh actions-cache delete amplify-iOS-latest-build-main --confirm
shell: bash
- name: Save the build cache
uses: actions/cache/save@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
with:
path: ${{ github.workspace }}/Build
key: amplify-iOS-latest-build-main

build-for-testing-amplify-swift-macOS:
runs-on: macos-13
Expand Down

0 comments on commit b75da2b

Please sign in to comment.