Skip to content

Commit

Permalink
Add PL-UDP test to dev tests (#2034)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #2034

Adding E2E Dev test that runs the UDP flow on test dataset.

Reviewed By: ajinkya-ghonge, jrodal98

Differential Revision:
D42489218

Privacy Context Container: L416713

fbshipit-source-id: da69e9cf11839b183e3aaa1cc0be785273474936
  • Loading branch information
Tal Davidi authored and facebook-github-bot committed Jan 20, 2023
1 parent f2eb80c commit b4d5ca2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/onedocker/test/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ USER pcs
# Link all the binaries into /home/pcs/onedocker/package
RUN mkdir -p /home/pcs/onedocker/package
WORKDIR /usr/local/bin
RUN for b in $(ls attribution* lift* pid* shard* private-id* decoupled* pcf2* pc_pre*); do ln -s $(pwd)/$b /home/pcs/onedocker/package/$b; done
RUN for b in $(ls attribution* lift* pid* shard* private-id* decoupled* pcf2* pc_pre* secure_random*); do ln -s $(pwd)/$b /home/pcs/onedocker/package/$b; done

# Link binaries name to match with onedocker binaries name
RUN ln -s decoupled_attribution_calculator /home/pcs/onedocker/package/decoupled_attribution
Expand Down
24 changes: 24 additions & 0 deletions fbpcs/tests/github/bolt_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,30 @@ jobs:
num_pid_containers: 2
pcs_features: [private_lift_pcf2_release]
concurrency: 4
lift_udp:
# publisher player args
publisher:
# required args #
input_path: https://fbpcs-github-e2e.s3.us-west-2.amazonaws.com/lift/inputs/publisher_e2e_input.csv
# optional args #
output_dir: https://fbpcs-github-e2e.s3.us-west-2.amazonaws.com/lift/outputs
expected_result_path: https://fbpcs-github-e2e.s3.us-west-2.amazonaws.com/lift/results/publisher_expected_result_pcf2.json
# partner player args
partner:
# required args #
input_path: https://fbpcs-github-e2e.s3.us-west-2.amazonaws.com/lift/inputs/partner_e2e_input.csv
# optional args #
output_dir: https://fbpcs-github-e2e.s3.us-west-2.amazonaws.com/lift/outputs
expected_result_path: https://fbpcs-github-e2e.s3.us-west-2.amazonaws.com/lift/results/partner_expected_result_pcf2.json
# args shared by both publisher and partner
shared:
# required args #
game_type: lift
# optional args #
num_mpc_containers: 2
num_pid_containers: 2
pcs_features: [private_lift_pcf2_release,private_lift_unified_data_process]
concurrency: 4
attribution:
# publisher player args
publisher:
Expand Down

0 comments on commit b4d5ca2

Please sign in to comment.