* Go for Broke * Let it fire * Add PipLine * Create the dir if it doesn't exist * Install Setuptools * Track Test Action's files * Fix Calling Job * Track Build Action files * Install Distutils, rename filenames * Fix Fail conditions * Make Build scripts smarter * Add file * Concat DLLs lists * Try to fail if Error DLLs * Try to make the fail smarter * Moar verbosity * Print the stuff first * Print outputs objects * See if this skips failure * Use py instead * Print error list * Don't ValueError * Try checking a different way * Try something else * Bleh, spell filename correctly * Update excluded_dlls.json * Ugh, gotta compare old to new somehow * Compare to old list * Condense build script * Moar verbosity * Update the global version * Update Excluded DLLs list * Actually use the bad DLLs list * Make a version number * Fix version number building * Fix version number building again * Fix Diagnostics * Try REST API stuff * Try REST API again * Moar REST * await * Get SHA * Try it all together * Del test workflow * Add Perms * Use a Token * Try this Token * Try different Token * Try different Token * Create App Version earlier * See this error again * Don't fail if App Version not made yet * Use New Secret * Print whole response * Documentation for Tagger * Update CI Instructions * Update CI * List References * Find latest tag Fix App Version getter * Fix commas * Check returned data * Update Build Script * Fix substring * Fix Git tag * Fix tag again * Visual indicators * Use encoding * Remove an indicator * Update CI * Update Project Name * PyInstaller Spec Template file * Update Build Script * Fix Tagger * Update CI * Download AppVersion during build * Test job can fail * Upload Logs instead of printing them * Change from Reusable Workflow to Action * Change ref to token * Compare to string * Use PAT * Use String literal * Remove Reusable Workflow * Update CI Scripts * Go for Broke * Let it fire * Add PipLine * Create the dir if it doesn't exist * Install Setuptools * Track Test Action's files * Fix Calling Job * Track Build Action files * Install Distutils, rename filenames * Fix Fail conditions * Make Build scripts smarter * Add file * Concat DLLs lists * Try to fail if Error DLLs * Try to make the fail smarter * Moar verbosity * Print the stuff first * Print outputs objects * See if this skips failure * Use py instead * Print error list * Don't ValueError * Try checking a different way * Try something else * Bleh, spell filename correctly * Update excluded_dlls.json * Ugh, gotta compare old to new somehow * Compare to old list * Condense build script * Moar verbosity * Update the global version * Update Excluded DLLs list * Actually use the bad DLLs list * Make a version number * Fix version number building * Fix version number building again * Fix Diagnostics * Try REST API stuff * Try REST API again * Moar REST * await * Get SHA * Try it all together * Del test workflow * Add Perms * Use a Token * Try this Token * Try different Token * Try different Token * Create App Version earlier * See this error again * Don't fail if App Version not made yet * Use New Secret * Print whole response * Documentation for Tagger * Update CI Instructions * Update CI * List References * Find latest tag Fix App Version getter * Fix commas * Check returned data * Update Build Script * Fix substring * Fix Git tag * Fix tag again * Visual indicators * Use encoding * Remove an indicator * Update CI * Update Project Name * PyInstaller Spec Template file * Update Build Script * Fix Tagger * Update CI * Download AppVersion during build * Test job can fail * Upload Logs instead of printing them * Change from Reusable Workflow to Action * Change ref to token * Compare to string * Use PAT * Use String literal * Remove Reusable Workflow * Update CI Scripts --------- Co-authored-by: Minnie A. Trethewey (Mike) <minnietrethewey@gmail.com>
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
"""
|
|
Locate and prepare binary builds
|
|
"""
|
|
# import distutils.dir_util # for copying trees
|
|
import os # for env vars
|
|
# import stat # for file stats
|
|
# import subprocess # do stuff at the shell level
|
|
import common
|
|
from shutil import move # file manipulation
|
|
|
|
env = common.prepare_env()
|
|
|
|
# make dir to put the binary in
|
|
if not os.path.isdir(os.path.join("..","artifact")):
|
|
os.mkdir(os.path.join("..","artifact"))
|
|
|
|
BUILD_FILENAME = ""
|
|
|
|
# list executables
|
|
BUILD_FILENAME = common.find_binary('.')
|
|
if BUILD_FILENAME == "":
|
|
BUILD_FILENAME = common.find_binary(os.path.join("..","artifact"))
|
|
|
|
if isinstance(BUILD_FILENAME,str):
|
|
BUILD_FILENAME = list(BUILD_FILENAME)
|
|
|
|
BUILD_FILENAMES = BUILD_FILENAME
|
|
|
|
print("OS Name: " + env["OS_NAME"])
|
|
print("OS Version: " + env["OS_VERSION"])
|
|
print("OS Distribution: " + env["OS_DIST"])
|
|
print("")
|
|
for BUILD_FILENAME in BUILD_FILENAMES:
|
|
DEST_FILENAME = common.prepare_filename(BUILD_FILENAME)
|
|
|
|
print("Build Filename: " + BUILD_FILENAME)
|
|
print("Dest Filename: " + DEST_FILENAME)
|
|
if not BUILD_FILENAME == "":
|
|
print("Build Filesize: " + common.file_size(BUILD_FILENAME))
|
|
else:
|
|
exit(1)
|
|
|
|
if not BUILD_FILENAME == "":
|
|
move(
|
|
os.path.join(".",BUILD_FILENAME),
|
|
os.path.join("..","artifact",BUILD_FILENAME)
|
|
)
|
|
print("")
|