Modify GitHub Actions #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish Wheels | |
on: | |
pull_request: | |
branches: [ main ] | |
env: | |
DOMAIN: poolside | |
REPOSITORY: poolside-dagster | |
jobs: | |
build_wheels: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-14] | |
runs-on: ${{ matrix.os }} | |
name: Build wheels on ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: arm64 | |
- name: Build for Windows | |
if: runner.os == 'Windows' | |
run: | | |
cmake -A Win32 -B ${{github.workspace}}/build_win32 -DSPM_ENABLE_SHARED=OFF -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/build/root_win32 | |
cmake --build ${{github.workspace}}/build_win32 --config Release --target install --parallel 8 | |
cmake -A x64 -B ${{github.workspace}}/build_amd64 -DSPM_ENABLE_SHARED=OFF -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/build/root_amd64 | |
cmake --build ${{github.workspace}}/build_amd64 --config Release --target install --parallel 8 | |
- name: Build for Mac | |
if: runner.os == 'macOS' | |
run: | | |
cmake -B ${{github.workspace}}/build -DSPM_ENABLE_SHARED=OFF -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/build/root | |
cmake --build ${{github.workspace}}/build --config Release --target install --parallel 8 | |
env: | |
CMAKE_OSX_ARCHITECTURES: arm64;x86_64 | |
- name: Install cibuildwheel | |
working-directory: ${{github.workspace}}/python | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
python -m pip install cibuildwheel==2.12.0 | |
- name: Build wheels | |
working-directory: ${{github.workspace}}/python | |
run: python -m cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_ARCHS_LINUX: auto aarch64 | |
CIBW_ARCHS_MACOS: x86_64 universal2 arm64 | |
CIBW_SKIP: "pp* *-musllinux_*" | |
CIBW_BUILD_VERBOSITY: 1 | |
- name: Build sdist archive | |
working-directory: ${{github.workspace}}/python | |
run: sh build_sdist.sh | |
- name: Fetch sdist archive | |
uses: tj-actions/glob@v17 | |
id: sdist | |
with: | |
files: ./python/dist/*.tar.gz | |
- name: Build wheel from sdist | |
run: python -m pip wheel "${{ steps.sdist.outputs.paths }}" --verbose | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::939990436136:role/gh-action-publish-artifacts-role | |
aws-region: us-east-1 | |
- name: Publish | |
run: | | |
export TWINE_USERNAME=aws | |
export TWINE_PASSWORD=`aws codeartifact get-authorization-token --domain ${{env.DOMAIN}} --domain-owner ${{ secrets.AWS_ACCOUNT_ID }} --query authorizationToken --output text` | |
export TWINE_REPOSITORY_URL=`aws codeartifact get-repository-endpoint --domain ${{env.DOMAIN}} --domain-owner ${{ secrets.AWS_ACCOUNT_ID }} --repository ${{ env.REPOSITORY }} --region us-east-1 --format pypi --query repositoryEndpoint --output text` | |
twine upload --verbose dist/* |