Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions .github/bin/uploadReleaseArtifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,19 @@ mapfile -t OPT_OS < <(echo "${OPT_OS[@]}" | tr ' ' '\n' | sort -u)
# JSON snippets used to configure downstream workflows
#-------------------------------------------------------------------------------

# For non-full installs, install the following tools.
binaries=(
circt-opt
circt-synth
circt-test
firtool
om-linker
)
binaryTargets=
for bin in "${binaries[@]}"; do
binaryTargets="$binaryTargets install-$bin"
done

# Configuration for a run of the static UBTI script.
configStatic=$(cat <<EOF
[
Expand All @@ -139,7 +152,7 @@ configStatic=$(cat <<EOF
"llvm_enable_assertions": "$OPT_ASSERTIONS",
"llvm_force_enable_stats": "ON",
"run_tests": $OPT_RUN_TESTS,
"install_target": "install-firtool install-om-linker",
"install_target": "$binaryTargets",
"package_name_prefix": "firrtl-bin"
}
]
Expand Down Expand Up @@ -213,7 +226,7 @@ configNativeFirtool=$(cat <<EOF
[
{
"name": "firtool",
"install_target": "install-firtool install-om-linker",
"install_target": "$binaryTargets",
"package_name_prefix": "firrtl-bin",
"cmake_build_type":"$OPT_CMAKE_BUILD_TYPE",
"llvm_enable_assertions":"$OPT_ASSERTIONS",
Expand Down
Loading