File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed
release_distribution_scripts Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Publish UTBot as an archive
2
2
3
3
on :
4
4
push :
5
- # branches: [main]
5
+ branches : [main]
6
6
7
7
jobs :
8
8
publish :
Original file line number Diff line number Diff line change 4
4
# Copyright (c) Huawei Technologies Co., Ltd. 2012-2021. All rights reserved.
5
5
#
6
6
7
+ source docker/building_dependencies/runtime_env.sh
7
8
chmod +x docker/action-scripts/build-utbot.sh
8
9
./docker/action-scripts/build-utbot.sh
9
10
cd server/build
Original file line number Diff line number Diff line change @@ -54,20 +54,18 @@ if [ -z "$IS_SUSE" ]
54
54
then
55
55
# If the system is not suse, use debian packages
56
56
move-libc-dev debian-libc-dev-install
57
- X86_LIBS=lib/x86_64-linux-gnu
57
+ export X86_LIBS=lib/x86_64-linux-gnu
58
58
else
59
59
# If the system is suse, use rpm packages
60
60
move-libc-dev suse-libc-dev-install
61
- X86_LIBS=lib64
62
-
63
- # Updating libm.so so that it contains valid path to libmvec_nonshared.a
64
- echo " /* GNU ld script
65
- */
61
+ export X86_LIBS=lib64
62
+ fi
63
+ # Updating libm.so so that it contains valid path to libmvec_nonshared.a
64
+ echo " /* GNU ld script */
66
65
OUTPUT_FORMAT(elf64-x86-64)
67
66
GROUP ( /$X86_LIBS /libm.so.6 AS_NEEDED ( $UTBOT_ALL /debs-install/usr/$X86_LIBS /libmvec_nonshared.a /$X86_LIBS /libmvec.so.1 ) )" > $UTBOT_ALL /debs-install/usr/$X86_LIBS /libm.so
68
67
69
- export LDFLAGS=" $LDFLAGS -L$UTBOT_ALL /debs-install/usr/lib64/ -B $UTBOT_ALL /debs-install/usr/lib64/ -L /lib64/ -B /lib64/"
70
- fi
68
+ export LDFLAGS=" $LDFLAGS -L$UTBOT_ALL /debs-install/usr/lib64/ -B $UTBOT_ALL /debs-install/usr/lib64/ -L /lib64/ -B /lib64/"
71
69
72
70
# Updating libc.so so that it contains valid path to libc_nonshared.a
73
71
echo " /* GNU ld script
You can’t perform that action at this time.
0 commit comments