Skip to content

Commit

Permalink
Try to simulate x64
Browse files Browse the repository at this point in the history
  • Loading branch information
BrainStone committed Sep 21, 2024
1 parent efe9e8a commit e9de44d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/code_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest-large ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -39,7 +39,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest-large ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest-large ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
needs: [build]
steps:
- run: |
Expand All @@ -94,8 +94,10 @@ jobs:
- name: Install OpenSSL 1.0.2
if: ${{ runner.os == 'MacOS' }}
run: |
brew install rbenv/tap/openssl@1.0
sudo ln -sfnv /opt/homebrew/Cellar/openssl@1.0/1.0.2* /usr/local/opt/openssl
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
export PATH="/usr/local/bin:$PATH"
arch -x86_64 brew install rbenv/tap/openssl@1.0
sudo ln -sfnv /usr/local/Cellar/openssl@1.0/1.0.2* /usr/local/opt/openssl
stat /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
# This is to ensure unit tests with MariaDB4j don't fail
- name: Install libncurses5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code_checks_reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest-large ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- run: |
ref="${github_ref////-}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lang_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest-large ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit e9de44d

Please sign in to comment.