Sha256: 21d84d481767b50246da9d81a371ddbb2ffaff458c455faac9431f6d9d63e073

Contents?: true

Size: 861 Bytes

Versions: 1

Compression:

Stored size: 861 Bytes

Contents

#!/bin/bash
set -euo pipefail

for n in 0 1 2; do
    for meshing in y n; do
        suffix="${n}${meshing}"
        rand_config=''
        meshing_config=''
        case "$n" in
            0)
                rand_config='--config=disable-randomization'
                ;;
            1)
                # already the default
                ;;
            2)
                rand_config='--config=shuffle-on-free'
                ;;
        esac
        case "$meshing" in
            n)
                meshing_config='--config=disable-meshing'
                ;;
            y)
                # already the default
                ;;
        esac
        bazel_config="$rand_config $meshing_config"
        echo building "'" "$bazel_config" "'"
        make V=1 BAZEL_CONFIG="$bazel_config"
        sudo V=1 make install LIB_SUFFIX="$suffix"
    done
done

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mesh-rb-0.0.1 ext/mesh/mesh/support/install_all_configs