summaryrefslogtreecommitdiff
path: root/tcwg-llvm-common.sh
blob: c889256b5de7fdf0cbbe6aa2ee9fc3ffb43425c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/usr/bin/env bash

# This script is a common repository for TCWG LLVM Jenkins logic, mainly:
#  - Creating tarball names, URLs
#  - Downloading toolchains, recognising compilers
#  - Generic board attributes (cores, memory, etc)

# Verify and download the toolchain, if any
download_toolchain() {
  local WORKSPACE="$1"
  local TOOLCHAIN="$2"
  if [ -z "$TOOLCHAIN" ]; then
    echo "WARNING: No toolchain specified, using the system one"
    return 0
  fi
  # Basename/dir
  FILE=$(basename "$TOOLCHAIN")
  DIR=${FILE//\.tar.*//}
  # Download the toolchain
  if [ ! -d "$WORKSPACE/$DIR" ]; then
    echo "No dir '$WORKSPACE/$DIR'..."
    if [ ! -f "$WORKSPACE/$FILE" ]; then
      echo "No file '$WORKSPACE/$FILE'..."
      echo "Downloading from '$TOOLCHAIN'"
      wget --progress=dot:giga "$TOOLCHAIN" -O "$WORKSPACE/$FILE"
    fi
    if [ ! -s "$WORKSPACE/$FILE" ]; then
      echo "ERROR: Failed to retrieve toolchain '$TOOLCHAIN'"
      rm -f "$WORKSPACE/$FILE"
      exit 1
    fi
    echo "Unpacking '$WORKSPACE/$FILE'"
    tar xf "$WORKSPACE/$FILE" -C "$WORKSPACE"
  fi
  if [ ! -d "$WORKSPACE/$DIR/bin" ]; then
    echo "ERROR: Toolchain '$TOOLCHAIN' has no 'bin' directory"
    exit 1
  fi
  # Clang or GCC?
  if [ -f "$WORKSPACE/$DIR/bin/clang" ]; then
    export CC="$WORKSPACE/$DIR/bin/clang"
    export CXX="$WORKSPACE/$DIR/bin/clang++"
  elif [ -f "$WORKSPACE/$DIR/bin/gcc" ]; then
    export CC="$WORKSPACE/$DIR/bin/gcc"
    export CXX="$WORKSPACE/$DIR/bin/g++"
  else
    echo "ERROR: Toolchain '$TOOLCHAIN' has no known compiler in $DIR/bin"
    exit 1
  fi
}

# Find the closest git hash for the SVN revision
update_git() {
  local BASE=$1
  local REV=$2
  local BASEDIR
  BASEDIR=$(dirname "$(readlink -f "$0")")

  # We don't need to create a branch with the commit, as the clones are new
  # Should be ok to stay in a detached head state for this purpose
  hash=$("$BASEDIR/svn-git-hash.pl" "$BASE" "$REV" | awk '{print $2}')
  git checkout "$hash"
}

# Find the SVN revision of a git-svn repository
find_svn_rev() {
  local BASE=$1
  rev="$(git -C "$BASE" log -n 1 | grep git-svn-id | perl -pe "s/.*@(\d+)\s.*/\$1/")"
  echo "$rev"
}

# Find the largest revision of a list
find_last_rev() {
  local LAST=0
  for rev in "$@"; do
    [ "$rev" -gt "$LAST" ] && LAST=$rev
  done
  echo "$LAST"
}

# Environment Variables and default values
CPUS=$(nproc --all)
# We may use between 500MB and 1GB per link job
LINKJOBS=$(($(free -g | awk '/Mem/ {print $2}')+1))
if [ "$LINKJOBS" -gt "$CPUS" ]; then
  LINKJOBS=$CPUS
fi
# Temporary location for toolchains produced (pushed)
PUSHPREFIX=clang+llvm
PUSHSUFFIX=tar.xz
PUSHSERVER=dev-01.tcwglab
PUSHUSER=tcwg-buildslave

push_binary_name() {
  local TAG="$1"     # ex: ci12, 4.0.0-rc1, r300293
  local TRIPLE="$2"  # ex: aarch64-linux-gnu
  echo "$PUSHPREFIX-$TAG-$TRIPLE"
}

push_binary_dir() {
  local TYPE="$1"    # ex: releases/binaries
  echo "builds/$TYPE/llvm"
}

push_scp_url() {
  local TYPE="$1"    # ex: releases/binaries
  local PUSHDIR
  PUSHDIR="$(push_binary_dir "$TYPE")"
  echo "$PUSHSERVER:public_html/$PUSHDIR"
}

push_wget_url() {
  local TAG="$1"     # ex: ci12, 4.0.0-rc1, r300293
  local TRIPLE="$2"  # ex: aarch64-linux-gnu
  local TYPE="$3"    # ex: releases/binaries
  local BINARY
  BINARY="$(push_binary_name "$TAG" "$TRIPLE")"
  local PUSHDIR
  PUSHDIR="$(push_binary_dir "$TYPE")"
  echo "http://$PUSHSERVER/~$PUSHUSER/$PUSHDIR/$BINARY.$PUSHSUFFIX"
}