Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Silverwolf-x committed Nov 22, 2024
0 parents commit 2da34df
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/fairseq.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: fairseq
on: [workflow_dispatch, push, pull_request]
jobs:
build:
name: Build for multiple Python versions
runs-on: windows-latest
strategy:
matrix:
python-version: [3.10, 3.11, 3.12]
steps:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: |
python -m pip install --upgrade "pip<24.1"
pip install fairseq
- run: |
python -c "import torch; print(f'Using torch version: {torch.__version__}')"
continue-on-error: true
- uses: actions/upload-artifact@v3
with:
name: Windows whl
path: fairseq-*.whl
if-no-files-found: error

0 comments on commit 2da34df

Please sign in to comment.