Skip to content

Commit 95fc262

Browse files
authored
Use --build-all (#5445)
1 parent 58be3c4 commit 95fc262

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/test_ya/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ runs:
206206
fi
207207
208208
# Also build targets which are not in tests' dependencies
209-
params+=(--no-strip-idle-build-results)
209+
params+=(--build-all)
210210
211211
echo "::debug::get version"
212212
./ya --version

.github/scripts/graph_compare.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ echo Workdir: $workdir
1010
echo Checkout base commit...
1111
git checkout $1
1212
echo Build graph for base commit...
13-
./ya make -Gj0 -ttt ydb --build release -k --cache-tests --no-strip-idle-build-results | jq '.graph[]' > $workdir/graph_base
13+
./ya make -Gj0 -ttt ydb --build release -k --cache-tests --build-all | jq '.graph[]' > $workdir/graph_base
1414

1515
echo Checkout head commit...
1616
git checkout $2
1717
echo Build graph for head commit...
18-
./ya make -Gj0 -ttt ydb --build release -k --cache-tests --no-strip-idle-build-results | jq '.graph[]' > $workdir/graph_head
18+
./ya make -Gj0 -ttt ydb --build release -k --cache-tests --build-all | jq '.graph[]' > $workdir/graph_head
1919

2020
echo Generate lists of uids for base and head...
2121
cat $workdir/graph_base | jq '.uid' > $workdir/uid_base

0 commit comments

Comments
 (0)