From 051c06dab082292ded8f36622d503ecd27b7f724 Mon Sep 17 00:00:00 2001 From: Adam Mork Date: Wed, 12 Jan 2022 17:33:02 -0800 Subject: [PATCH] Build Automation Updates (#9) - Update SSH key fingerprint - Initialize mobilecoin repo on both jobs. --- .circleci/config.yml | 15 +++++++++++---- .gitignore | 4 ++++ LibMobileCoin.podspec | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 59b8274..26322c8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,6 +11,14 @@ defaults: testNetTestAccountMnemonicsCommaSeparated: commands: + init-mobilecoin-submodule: + description: Initialize mobilecoin submodule + steps: + - run: + name: Run git submodule update --init + working_directory: Vendor/mobilecoin + command: git submodule update --init --depth 1 --recursive + print-tool-versions: description: Print versions of various tools used steps: @@ -73,9 +81,6 @@ commands: lint-locally-podspec: steps: - - add_ssh_keys: - fingerprints: - - "c2:90:32:ec:0e:38:09:a0:b0:d7:20:23:68:bc:8d:6f" - run: name: Lint podspec locally command: make lint-locally @@ -84,7 +89,7 @@ commands: steps: - add_ssh_keys: fingerprints: - - "c2:90:32:ec:0e:38:09:a0:b0:d7:20:23:68:bc:8d:6f" + - "16:4d:90:f0:c4:2b:2e:ac:96:7b:6b:8b:e0:ce:72:28" - run: name: Publish Pod to Trunk command: make publish @@ -115,6 +120,7 @@ jobs: SCAN_OUTPUT_TYPES: junit steps: - checkout + - init-mobilecoin-submodule - set-ruby-version - install-gems - print-tool-versions @@ -138,6 +144,7 @@ jobs: <<: *default-environment steps: - checkout + - init-mobilecoin-submodule - set-ruby-version - install-gems - print-tool-versions diff --git a/.gitignore b/.gitignore index 439b68d..ef86068 100644 --- a/.gitignore +++ b/.gitignore @@ -71,3 +71,7 @@ fastlane/test_output # https://github.com/johnno1962/injectionforxcode iOSInjectionProject/ + +# Bundler +.bundle/ +.vendor/ diff --git a/LibMobileCoin.podspec b/LibMobileCoin.podspec index d6fdc50..f209149 100644 --- a/LibMobileCoin.podspec +++ b/LibMobileCoin.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # s.name = "LibMobileCoin" - s.version = "1.2.0-pre5" + s.version = "1.2.0-pre7" s.summary = "A library for communicating with MobileCoin network" s.author = "MobileCoin"