Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
ruby: "3.1"
build: true
jobs: "--only --test"
- os: ubuntu-latest
ruby: "3.2"
build: true
Expand Down
4 changes: 2 additions & 2 deletions .toys/ci.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

toys_version! "~> 0.15"
toys_version! "~> 0.21"

desc "Run CI checks"

Expand Down Expand Up @@ -89,7 +89,7 @@ def run_test
next
end
end
result = exec_separate_tool ["test", "--minitest-mock"], name: "Tests in #{dir}"
result = exec_separate_tool ["test"], name: "Tests in #{dir}"
if result.success?
puts "PASSED: #{name}", :bold, :green
else
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
source "https://rubygems.org"

gem "google-style", "~> 1.30.1"
gem "google-style", "~> 1.32.0"
10 changes: 5 additions & 5 deletions owlbot-postprocessor/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

source "https://rubygems.org"

gem "google-style", "~> 1.31.0"
gem "minitest", "~> 5.16"
gem "minitest-focus", "~> 1.3"
gem "minitest-rg", "~> 5.2"
gem "toys-core", "~> 0.15"
gem "google-style", "~> 1.32.0"
gem "minitest", "~> 6.0.2"
gem "minitest-focus", "~> 1.4"
gem "minitest-rg", "~> 5.3"
gem "toys-core", "~> 0.21"
2 changes: 1 addition & 1 deletion owlbot-postprocessor/test/test_owlbot.rb
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ def foo
it "runs toys" do
create_gem_file "Gemfile", <<~RUBY
source "https://rubygems.org"
gem "minitest", "~> 5.14"
gem "minitest", "~> 6.0.2"
RUBY
create_gem_file ".toys.rb", <<~RUBY
tool "foo" do
Expand Down
2 changes: 1 addition & 1 deletion toys/yoshi/.lib/yoshi/utils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def gh_fork_url
def gh_ensure_fork remote: nil
git_verify_binary
gh_verify_binary
@context.exec ["gh", "repo", "fork", gh_repo_full_name, "--remote=false", "--clone=false"], e: true
@context.exec ["gh", "repo", "fork", gh_repo_full_name, "--clone=false"], e: true
@context.exec ["gh", "repo", "sync", gh_fork_full_name], e: true
if remote && gh_cur_token
unless context.exec(["git", "remote", "get-url", remote], e: false, out: :null, err: :null).success?
Expand Down
Loading