From 177f2f19cf798c46274575dfeaa9e685df3541a6 Mon Sep 17 00:00:00 2001 From: Walid Kayhal <3347810+waliid@users.noreply.github.com> Date: Tue, 10 Dec 2024 10:11:19 +0100 Subject: [PATCH] Keep only tests jobs --- .github/workflows/ci.yml | 70 ++++++++++++++++++++-------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd94e91b..8cdda0ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,15 +5,15 @@ on: # yamllint disable-line rule:truthy push: jobs: - check-quality: - name: ๐Ÿ”Ž Check quality - runs-on: macos-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 + # check-quality: + # name: ๐Ÿ”Ž Check quality + # runs-on: macos-latest + # steps: + # - name: Checkout code + # uses: actions/checkout@v4 - - name: Run the quality check - run: make check-quality + # - name: Run the quality check + # run: make check-quality tests: name: ๐Ÿงช Tests @@ -37,33 +37,33 @@ jobs: check_name: ๐Ÿ“‹ Unit test report (${{ matrix.platform }}) fail_on_failure: true - archive-demos: - name: ๐Ÿ“ฆ Archives - runs-on: macos-latest - strategy: - matrix: - platform: [ios, tvos] - steps: - - name: Checkout code - uses: actions/checkout@v4 + # archive-demos: + # name: ๐Ÿ“ฆ Archives + # runs-on: macos-latest + # strategy: + # matrix: + # platform: [ios, tvos] + # steps: + # - name: Checkout code + # uses: actions/checkout@v4 - - name: Add Apple certificate - run: | - Scripts/add-apple-certificate.sh \ - $RUNNER_TEMP \ - ${{ secrets.KEYCHAIN_PASSWORD }} \ - ${{ secrets.APPLE_DEV_CERTIFICATE }} \ - ${{ secrets.APPLE_DEV_CERTIFICATE_PASSWORD }} + # - name: Add Apple certificate + # run: | + # Scripts/add-apple-certificate.sh \ + # $RUNNER_TEMP \ + # ${{ secrets.KEYCHAIN_PASSWORD }} \ + # ${{ secrets.APPLE_DEV_CERTIFICATE }} \ + # ${{ secrets.APPLE_DEV_CERTIFICATE_PASSWORD }} - - name: Configure environment - run: | - Scripts/configure-environment.sh \ - ${{ secrets.APP_STORE_CONNECT_API_KEY }} + # - name: Configure environment + # run: | + # Scripts/configure-environment.sh \ + # ${{ secrets.APP_STORE_CONNECT_API_KEY }} - - name: Archive the demo - run: make archive-demo-${{ matrix.platform }} - env: - TEAM_ID: ${{ secrets.TEAM_ID }} - KEY_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ID }} - KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ISSUER_ID }} - TESTFLIGHT_GROUPS: ${{ vars.TESTFLIGHT_GROUPS }} + # - name: Archive the demo + # run: make archive-demo-${{ matrix.platform }} + # env: + # TEAM_ID: ${{ secrets.TEAM_ID }} + # KEY_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ID }} + # KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_KEY_ISSUER_ID }} + # TESTFLIGHT_GROUPS: ${{ vars.TESTFLIGHT_GROUPS }}