>From Ian Maxon <[email protected]>: Ian Maxon has submitted this change. ( https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/21201?usp=email )
Change subject: [NO ISSUE][TEST] Check out ch2 at specific version ...................................................................... [NO ISSUE][TEST] Check out ch2 at specific version Details: Newer versions of ch2 fix numpy at a particular version. The reasons for doing that don't apply to what we're using it for and cause issues, so check it out at a version before that. Change-Id: Ic719d4b53ad12bd06f46db1180323ca52c5fa983 Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/21201 Tested-by: Jenkins <[email protected]> Integration-Tests: Jenkins <[email protected]> Reviewed-by: Preetham Poluparthi <[email protected]> --- M asterixdb/asterix-app/pom.xml 1 file changed, 15 insertions(+), 0 deletions(-) Approvals: Jenkins: Verified; Verified Preetham Poluparthi: Looks good to me, approved Anon. E. Moose #1000171: diff --git a/asterixdb/asterix-app/pom.xml b/asterixdb/asterix-app/pom.xml index 4cdabe7..c142993 100644 --- a/asterixdb/asterix-app/pom.xml +++ b/asterixdb/asterix-app/pom.xml @@ -332,6 +332,21 @@ </configuration> </execution> <execution> + <id>checkout-ch2</id> + <phase>${prepare-env.stage}</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <executable>git</executable> + <workingDirectory>${project.build.directory}/ch2</workingDirectory> + <arguments> + <argument>checkout</argument> + <argument>f8fea792672c3bcb1c40166fcabda48e8aac4942</argument> + </arguments> + </configuration> + </execution> + <execution> <id>numpy-install</id> <phase>${prepare-env.stage}</phase> <goals> -- To view, visit https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/21201?usp=email To unsubscribe, or for help writing mail filters, visit https://asterix-gerrit.ics.uci.edu/settings?usp=email Gerrit-MessageType: merged Gerrit-Project: asterixdb Gerrit-Branch: lumina Gerrit-Change-Id: Ic719d4b53ad12bd06f46db1180323ca52c5fa983 Gerrit-Change-Number: 21201 Gerrit-PatchSet: 3 Gerrit-Owner: Ian Maxon <[email protected]> Gerrit-Reviewer: Anon. E. Moose #1000171 Gerrit-Reviewer: Ian Maxon <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Preetham Poluparthi <[email protected]>
