mirror of
https://github.com/Mintplex-Labs/tiktoken.git
synced 2026-07-01 18:48:04 -04:00
Remove python CI steps for now, write .npmrc in actions
This commit is contained in:
@@ -1,83 +0,0 @@
|
||||
name: Build wheels
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build_wheels:
|
||||
name: py${{ matrix.python-version }} on ${{ matrix.os }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
# cibuildwheel builds linux wheels inside a manylinux container
|
||||
# it also takes care of procuring the correct python version for us
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
python-version: [38, 39, 310, 311]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: pypa/cibuildwheel@v2.12.0
|
||||
env:
|
||||
CIBW_BUILD: "cp${{ matrix.python-version}}-*"
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
path: ./wheelhouse/*.whl
|
||||
|
||||
build_wheels_aarch64:
|
||||
name: py${{ matrix.python-version }} on ${{ matrix.os }} (aarch64)
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
python-version: [38, 39, 310, 311]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Setup up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
with:
|
||||
platforms: arm64
|
||||
|
||||
- name: Build wheels
|
||||
uses: pypa/cibuildwheel@v2.11.3
|
||||
env:
|
||||
CIBW_BUILD: "cp${{ matrix.python-version}}-*"
|
||||
CIBW_ARCHS: aarch64
|
||||
CIBW_BUILD_VERBOSITY: 3
|
||||
# https://github.com/rust-lang/cargo/issues/10583
|
||||
CIBW_ENVIRONMENT_LINUX: PATH="$PATH:$HOME/.cargo/bin" CARGO_NET_GIT_FETCH_WITH_CLI=true
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
path: ./wheelhouse/*.whl
|
||||
|
||||
build_sdist:
|
||||
name: sdist
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
name: Install Python
|
||||
with:
|
||||
python-version: "3.9"
|
||||
- name: Run check-manifest
|
||||
run: |
|
||||
pip install check-manifest
|
||||
check-manifest -v
|
||||
- name: Build sdist
|
||||
run: |
|
||||
pip install --upgrade build
|
||||
python -m build --sdist
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: dist
|
||||
path: ./dist/*.tar.gz
|
||||
@@ -19,6 +19,13 @@ jobs:
|
||||
- name: Install
|
||||
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
||||
- run: yarn install --frozen-lockfile
|
||||
- name: Create .npmrc
|
||||
run: |
|
||||
cat << EOF > "$HOME/.npmrc"
|
||||
//registry.npmjs.org/:_authToken=$NPM_TOKEN
|
||||
EOF
|
||||
env:
|
||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
- name: Create Release Pull Request or Publish
|
||||
id: changesets
|
||||
uses: changesets/action@v1
|
||||
|
||||
Reference in New Issue
Block a user