Hi, I'm working in an Android project (Java), where I created an Azure Pipeline that can generate an AAR files. The structure of the project is modular where in one repo, there are multiple modules/directories for each library. Now, some libraries have dependencies to another. For example, Display module has dependencies on Platform module. Now, I want my Pipeline to detect that if there are changes in both directory, the Platform module should build first before the Display module.
Here's my YAML file:

I also added an script to check the variables value:

Now, to test my pipeline. I only commit changes from Display module. But in the result, all the variables returns true.

Am I missing something with my YAML script?
Thanks,
Patrick
Hi, I'm working in an Android project (Java), where I created an Azure Pipeline that can generate an AAR files. The structure of the project is modular where in one repo, there are multiple modules/directories for each library. Now, some libraries have dependencies to another. For example, Display module has dependencies on Platform module. Now, I want my Pipeline to detect that if there are changes in both directory, the Platform module should build first before the Display module.
Here's my YAML file:

I also added an script to check the variables value:

Now, to test my pipeline. I only commit changes from Display module. But in the result, all the variables returns true.

Am I missing something with my YAML script?
Thanks,
Patrick