diff --git a/.github/workflows/pr_android.yml b/.github/workflows/pr_android.yml index 6400b29bd..a49cf507a 100644 --- a/.github/workflows/pr_android.yml +++ b/.github/workflows/pr_android.yml @@ -18,7 +18,7 @@ jobs: matrix: api-level: [ 34 ] newArchEnabled: [ false, true ] - name: Build for API Level ${{ matrix.api-level }} + name: Build for API Level ${{ matrix.api-level }} using ${{matrix.newArchEnabled == true && 'New' || 'Old' }} Architecture steps: - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/pr_ios.yml b/.github/workflows/pr_ios.yml index 0c5295e21..9933529b6 100644 --- a/.github/workflows/pr_ios.yml +++ b/.github/workflows/pr_ios.yml @@ -19,8 +19,8 @@ jobs: xcode_version: [ '15.4.0' ] newArchEnabled: [ 0, 1 ] platform: [iOS, tvOS] - runs-on: macos-latest - name: Build for ${{ matrix.platform }} using XCode version ${{ matrix.xcode_version }} + name: Build for ${{ matrix.platform }} using XCode version ${{ matrix.xcode_version }} and ${{matrix.newArchEnabled == 1 && 'New' || 'Old' }} Architecture + steps: - name: Checkout repository uses: actions/checkout@v4