change test log path

This commit is contained in:
hyuraku 2021-04-02 21:00:27 +09:00
parent c0dc5cae68
commit 854b898856
2 changed files with 2 additions and 2 deletions

View File

@ -215,7 +215,7 @@ jobs:
- name: Cache parallel tests log - name: Cache parallel tests log
uses: actions/cache@v1 uses: actions/cache@v1
with: with:
path: /tmp/parallel_runtime_rspec.log path: parallel_runtime_rspec.log
key: ${{ runner.os }}-parallel_runtime_rspec.log key: ${{ runner.os }}-parallel_runtime_rspec.log
restore-keys: ${{ runner.os }}-parallel_runtime_rspec.log restore-keys: ${{ runner.os }}-parallel_runtime_rspec.log

View File

@ -99,7 +99,7 @@ module Homebrew
end end
parallel_rspec_log_path =if ENV["CI"] parallel_rspec_log_path =if ENV["CI"]
"/tmp/parallel_runtime_rspec.log" "parallel_runtime_rspec.log"
else else
"#{HOMEBREW_CACHE}/tests/parallel_runtime_rspec.log" "#{HOMEBREW_CACHE}/tests/parallel_runtime_rspec.log"
end end