Created
November 27, 2023 16:35
-
-
Save vitroz/e14b63552eaee37d94757a9400e89bae to your computer and use it in GitHub Desktop.
libyears-health-metrics-check
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'date' | |
def execute_commands(directory_path, file_name) | |
# Commands to execute | |
commands = [ | |
'git checkout main', | |
'git pull', | |
'smile-cli run bundle install', | |
'smile-cli run libyear-bundler', | |
'smile-cli run libyear-bundler --versions' | |
] | |
# Get current date in dd-mm-yy format | |
current_date = Date.today.strftime('%d-%m-%y') | |
# Create file for storing outputs | |
output_file = File.open(file_name, 'a') | |
# Execute commands | |
Dir.chdir(directory_path) do | |
commands.each do |cmd| | |
output = `#{cmd}` | |
output_file.puts("Command: #{cmd}\n#{output}\n\n") | |
end | |
end | |
output_file.close | |
puts "Tasks completed for #{directory_path}! Output stored in #{file_name}." | |
end | |
# Directories and corresponding file names | |
directories = [ | |
'/Users/vitor/dev/smile/smile-core/main/smile-core', | |
'/Users/vitor/dev/smile/smile-data-ingestion-pipelines/main/smile-data-ingestion-pipeline', | |
'/Users/vitor/dev/smile/smile-data-ingestion-endpoints/main/smile-data-ingestion-endpoints' | |
] | |
# Execute commands for each directory | |
directories.each do |dir| | |
file_name = "libyears-#{Date.today.strftime('%d-%m-%y')}-#{dir.split('/').last}.txt" | |
execute_commands(dir, file_name) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment