[Backport 7.x] Revert "(PA-7090) Correct system time on AIX" #4431
Workflow file for this run
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
--- | |
name: RSpec tests | |
on: | |
push: | |
branches: [7.x] | |
pull_request: | |
branches: [7.x] | |
permissions: | |
contents: read | |
jobs: | |
rspec_tests: | |
name: ${{ matrix.cfg.os }}(ruby ${{ matrix.cfg.ruby }}) | |
strategy: | |
matrix: | |
cfg: | |
- {os: ubuntu-latest, ruby: '2.5'} | |
- {os: ubuntu-latest, ruby: '2.6'} | |
- {os: ubuntu-latest, ruby: '2.7'} | |
- {os: ubuntu-latest, ruby: '3.0'} | |
- {os: ubuntu-latest, ruby: 'jruby-9.3.14.0'} | |
- {os: windows-2019, ruby: '2.5'} | |
- {os: windows-2019, ruby: '2.6'} | |
- {os: windows-2019, ruby: '2.7'} | |
- {os: windows-2019, ruby: '3.0'} | |
runs-on: ${{ matrix.cfg.os }} | |
env: | |
BUNDLE_SET: "without packaging documentation" | |
steps: | |
- name: Checkout current PR | |
uses: actions/checkout@v4 | |
- name: Install ruby version ${{ matrix.cfg.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.cfg.ruby }} | |
bundler-cache: true | |
- name: Run tests on Windows | |
if: runner.os == 'Windows' | |
run: | | |
# https://github.com/ruby/ruby/pull/2791/files#diff-ff5ff976e81bebd977f0834e60416abbR97-R100 | |
# Actions uses UTF8, causes test failures, similar to normal OS setup | |
$PSDefaultParameterValues['*:Encoding'] = 'utf8' | |
[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437") | |
[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437") | |
$Env:LOG_SPEC_ORDER = 'true' | |
# debug information | |
chcp | |
Get-WinSystemLocale | |
Get-ChildItem Env: | % { Write-Output "$($_.Key): $($_.Value)" } | |
# list current OpenSSL install | |
gem list openssl | |
ruby -ropenssl -e 'puts "OpenSSL Version - #{OpenSSL::OPENSSL_VERSION}"; puts "OpenSSL Library Version - #{OpenSSL::OPENSSL_LIBRARY_VERSION}"' | |
Get-Content Gemfile.lock | |
ruby -v | |
gem --version | |
bundle --version | |
# Run tests | |
bundle exec rake parallel:spec[2] | |
- name: Run tests on Linux | |
if: runner.os == 'Linux' | |
run: | | |
# debug information | |
gem list openssl | |
ruby -ropenssl -e 'puts "OpenSSL Version - #{OpenSSL::OPENSSL_VERSION}"; puts "OpenSSL Library Version - #{OpenSSL::OPENSSL_LIBRARY_VERSION}"' | |
cat Gemfile.lock | |
ruby -v | |
gem --version | |
bundle --version | |
if [[ ${{ matrix.cfg.ruby }} =~ "jruby" ]]; then | |
export _JAVA_OPTIONS='-Xmx1024m -Xms512m' | |
# workaround for PUP-10683 | |
sudo apt remove rpm | |
fi | |
bundle exec rake parallel:spec[2] |