Skip to content

Commit

Permalink
[master] - For now, comment out tests. We are interested in the relea…
Browse files Browse the repository at this point in the history
…se actions - TT
  • Loading branch information
Tyler-Keith-Thompson committed Apr 24, 2021
1 parent bdf2be6 commit 385781b
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 385781b

Please sign in to comment.