Skip to content

Commit

Permalink
Pass correct env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
loremattei committed Mar 5, 2025
1 parent e3d7219 commit 27460ed
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/tdsCompilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,23 @@ jobs:
- name: Run performance test (iOS)
run: |
xcodebuild test-without-building \
-scheme TrackerRadarKit \
-destination 'platform=macOS' \
-only-testing:TrackerRadarKitPerformanceTests/NextTrackerDataSetPerformanceTests \
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/
env TEST_RUNNER_TDS_UT_FILE_NAME=tds-ios.json \
TEST_RUNNER_TDS_UT_URL=${{ inputs.ios_s3_url }} \
TEST_RUNNER_TDS_REF_FILE_NAME=tds-ios.json \
TEST_RUNNER_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 \
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/
env TEST_RUNNER_TDS_UT_FILE_NAME=macos-tds.json \
TEST_RUNNER_TDS_UT_URL=${{ inputs.macos_s3_url }} \
TEST_RUNNER_TDS_REF_FILE_NAME=macos-tds.json \
TEST_RUNNER_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 27460ed

Please sign in to comment.