Skip to content

Commit

Permalink
Merge pull request #237 from emiliofernandes/patch-1
Browse files Browse the repository at this point in the history
Update github actions' versions
  • Loading branch information
joanimato authored Feb 15, 2025
2 parents 5e1961b + 21c4545 commit 622ed8b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/compile-binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:

jobs:
compile_binaries:
name: Compile binaries on ${{ matrix.os }}
name: Build wheels on ${{ matrix.os }} ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -40,17 +40,17 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Compile Vina for linux x86-64
- name: Compile Vina for Linux x86-64
if: matrix.os == 'ubuntu-latest' && matrix.arch == 'x86_64'
run: |
sudo apt-get update -y
sudo apt-get install -y libboost-all-dev swig
cd ./build/linux/release
make
- name: Compile Vina for linux ${{ matrix.arch }}
- name: Compile Vina for Linux aarch64
if: matrix.os == 'ubuntu-latest' && matrix.arch != 'x86_64'
uses: uraimo/run-on-arch-action@v2
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pypi-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- name: Add tag to version.py file
Expand Down Expand Up @@ -116,11 +116,11 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'
Expand All @@ -147,9 +147,9 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'
Expand Down

0 comments on commit 622ed8b

Please sign in to comment.