Skip to content

Commit

Permalink
workflow env fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kshann authored and loremattei committed Mar 5, 2025
1 parent 731416c commit 9b25946
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions .github/workflows/tdsCompilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,23 @@ jobs:
- name: Run performance test (iOS)
run: |
xcodebuild test-without-building \
-scheme TrackerRadarKit \
-destination 'platform=macOS' \
-only-testing:TrackerRadarKitPerformanceTests/NextTrackerDataSetPerformanceTests \
-testenv TDS_UT_FILE_NAME=tds-ios.json \
-testenv TDS_UT_URL=${{ inputs.ios_s3_url }} \
-testenv TDS_REF_FILE_NAME=tds-ios.json \
-testenv TDS_REF_URL=https://staticcdn.duckduckgo.com/trackerblocking/v5/current/
env TDS_UT_FILE_NAME=tds-ios.json \
TDS_UT_URL=${{ inputs.ios_s3_url }} \
TDS_REF_FILE_NAME=tds-ios.json \
TDS_REF_URL=https://staticcdn.duckduckgo.com/trackerblocking/v5/current/ \
xcodebuild test-without-building \
-scheme TrackerRadarKit \
-destination 'platform=macOS' \
-only-testing:TrackerRadarKitPerformanceTests/NextTrackerDataSetPerformanceTests
- name: Run performance test (macOS)
run: |
xcodebuild test-without-building \
-scheme TrackerRadarKit \
-destination 'platform=macOS' \
-only-testing:TrackerRadarKitPerformanceTests/NextTrackerDataSetPerformanceTests \
-testenv TDS_UT_FILE_NAME=tds-macos.json \
-testenv TDS_UT_URL=${{ inputs.macos_s3_url }} \
-testenv TDS_REF_FILE_NAME=tds-macos.json \
-testenv TDS_REF_URL=https://staticcdn.duckduckgo.com/trackerblocking/v6/current/
env TDS_UT_FILE_NAME=tds-macos.json \
TDS_UT_URL=${{ inputs.macos_s3_url }} \
TDS_REF_FILE_NAME=tds-macos.json \
TDS_REF_URL=https://staticcdn.duckduckgo.com/trackerblocking/v6/current/ \
xcodebuild test-without-building \
-scheme TrackerRadarKit \
-destination 'platform=macOS' \
-only-testing:TrackerRadarKitPerformanceTests/NextTrackerDataSetPerformanceTests

0 comments on commit 9b25946

Please sign in to comment.