Skip to content

Commit

Permalink
test manylinux2014_x86_64
Browse files Browse the repository at this point in the history
  • Loading branch information
tunmx committed Dec 3, 2024
1 parent 9bb398c commit de056df
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
env:
GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}


jobs:
build_manylinux2014_x86_64:
name: Compile manylinux2014_x86_64
Expand All @@ -18,20 +19,27 @@ jobs:
# Step 1: Checkout the repository
- name: Checkout Repository
uses: actions/checkout@v4

# Step 2: Set up Docker Compose
- name: Set up Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
# Step 2: Execute the docker-compose command
# Step 3: Execute the docker-compose command
- name: Execute Docker Compose
run: |
docker-compose up build-manylinux2014-x86
# Step 3: Upload to PyPI
# Step 4: Upload to PyPI
- name: Upload to PyPI
env:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
run: |
pip install twine
twine upload python/dist/* -u __token__ -p $PYPI_API_TOKEN
# build_macos_arm64:
# name: Compile MacOS-arm64
# runs-on: macos-14
Expand Down

0 comments on commit de056df

Please sign in to comment.