You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rust-raspberrypi-OS-tutorials/utils/ready_for_publish.rb

31 lines
631 B
Ruby

#!/usr/bin/env ruby
# frozen_string_literal: true
# SPDX-License-Identifier: MIT OR Apache-2.0
#
# Copyright (c) 2018-2020 Andre Richter <andre.o.richter@gmail.com>
require_relative 'clean_all'
require_relative 'clippy_all'
require_relative 'diff_all'
require_relative 'fmt_all'
require_relative 'make_all'
require_relative 'sanity_checks'
require_relative 'test_integration_all'
require_relative 'test_unit_all'
clean_all
fmt_all
system('rubocop -l utils')
sanity_checks
clippy_all
clean_all
make_all
test_unit_all
test_integration_all
system('cd X1_JTAG_boot && bash update.sh')
diff_all
clean_all
system('~/bin/misspell .')