From 385781b26a06ffd7d298d3ca1bf351c1dc5593ea Mon Sep 17 00:00:00 2001 From: Tyler Thompson Date: Sat, 24 Apr 2021 09:28:38 -0600 Subject: [PATCH] [master] - For now, comment out tests. We are interested in the release actions - TT --- .github/workflows/CI.yml | 66 ++++++++++++++++++++-------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 64870ff35..a1aa2d6b6 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -7,38 +7,38 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v2 - - name: Run TESTS - run: fastlane unit_test - - name: Generate SonarCloud Friendly Coverage Report - run: ./xccov-to-sonarqube-generic.sh ~/Library/Developer/Xcode/DerivedData/*/Logs/Test/*.xcresult > sq-generic.xml - - name: Upload Coverage Report - uses: actions/upload-artifact@v2 - with: - name: sq-generic.xml - path: sq-generic.xml - retention-days: 1 + # - name: Run TESTS + # run: fastlane unit_test + # - name: Generate SonarCloud Friendly Coverage Report + # run: ./xccov-to-sonarqube-generic.sh ~/Library/Developer/Xcode/DerivedData/*/Logs/Test/*.xcresult > sq-generic.xml + # - name: Upload Coverage Report + # uses: actions/upload-artifact@v2 + # with: + # name: sq-generic.xml + # path: sq-generic.xml + # retention-days: 1 - sonar_scan: - needs: test - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Download Coverage Report - uses: actions/download-artifact@v2 - with: - name: sq-generic.xml - - name: SonarCloud Scan - uses: sonarsource/sonarcloud-github-action@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + # sonar_scan: + # needs: test + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v2 + # - name: Download Coverage Report + # uses: actions/download-artifact@v2 + # with: + # name: sq-generic.xml + # - name: SonarCloud Scan + # uses: sonarsource/sonarcloud-github-action@master + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - build_for_package_managers: - needs: test - runs-on: macos-latest - steps: - - uses: actions/checkout@v2 - - name: Validate SwiftPM BUILDs - run: fastlane build_swiftpm - - name: Validate Cocoapods Can Deploy (lib lint) - run: fastlane cocoapods_liblint + # build_for_package_managers: + # needs: test + # runs-on: macos-latest + # steps: + # - uses: actions/checkout@v2 + # - name: Validate SwiftPM BUILDs + # run: fastlane build_swiftpm + # - name: Validate Cocoapods Can Deploy (lib lint) + # run: fastlane cocoapods_liblint