Skip to content
Snippets Groups Projects
Verified Commit 6a5e0b31 authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame :jack_o_lantern:
Browse files

Bug 40651: Fix Gradle not found in GV/merge_aars

Geckoview builds were failing because the merge_aars phase was missing
Gradle. Since #40640 we are passing gradle as an argument while setting
the compiler up, but the merge_aars phase was missing it.
parent 487992fd
No related branches found
No related tags found
1 merge request!545Bug 40651: Fix Gradle not found in GV/merge_aars
......@@ -35,7 +35,10 @@ steps:
merge_aars: |
#!/bin/bash
[% c("var/set_default_env") -%]
[% pc(c('var/compiler'), 'var/setup', { compiler_tarfile => c('input_files_by_name/' _ c('var/compiler')) }) %]
[% pc(c('var/compiler'), 'var/setup', {
compiler_tarfile => c('input_files_by_name/' _ c('var/compiler')),
gradle_tarfile => c("input_files_by_name/gradle"),
}) %]
distdir=/var/tmp/dist
builddir=/var/tmp/build
mkdir -p /var/tmp/build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment