0.0.17 #56
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 | |
on: | |
workflow_dispatch: | |
release: | |
types: | |
- published | |
# push: | |
# branches: | |
# - main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# cf. https://github.com/oxigraph/oxigraph/blob/main/.github/workflows/artifacts.yml | |
jobs: | |
binary_linux: | |
name: 🐧 Build binaries for Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: rustup update && rustup target add aarch64-unknown-linux-gnu | |
- run: | | |
sudo apt update && sudo apt install -y g++-aarch64-linux-gnu | |
echo -e "\n\n[target.aarch64-unknown-linux-gnu]\nlinker = \"aarch64-linux-gnu-gcc\"" >> .cargo/config.toml | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo build --release | |
working-directory: ./cli | |
- run: cargo build --release --target aarch64-unknown-linux-gnu | |
working-directory: ./cli | |
env: | |
BINDGEN_EXTRA_CLANG_ARGS: --sysroot /usr/aarch64-linux-gnu | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: nanopub_x86_64_linux_gnu | |
path: target/release/nanopub-cli | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: nanopub_aarch64_linux_gnu | |
path: target/aarch64-unknown-linux-gnu/release/nanopub-cli | |
- if: github.event_name == 'release' | |
run: | | |
mv target/release/nanopub-cli nanopub_x86_64_linux_gnu | |
mv target/aarch64-unknown-linux-gnu/release/nanopub-cli nanopub_aarch64_linux_gnu | |
- uses: softprops/action-gh-release@v1 | |
if: github.event_name == 'release' | |
with: | |
files: | | |
nanopub_x86_64_linux_gnu | |
nanopub_aarch64_linux_gnu | |
# nanopub_${{ github.event.release.tag_name }}_x86_64_linux_gnu | |
# tag_name: ${{ github.event.release.tag_name }} | |
binary_mac: | |
name: 🍎 Build binaries for MacOS | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: rustup update && rustup target add aarch64-apple-darwin | |
- run: | | |
sudo apt update && sudo apt install -y g++-aarch64-linux-gnu | |
echo -e "\n\n[target.aarch64-unknown-linux-gnu]\nlinker = \"aarch64-linux-gnu-gcc\"" >> .cargo/config.toml | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo build --release | |
working-directory: ./cli | |
- run: cargo build --release --target aarch64-apple-darwin | |
working-directory: ./cli | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: nanopub_x86_64_apple | |
path: target/release/nanopub-cli | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: nanopub_aarch64_apple | |
path: target/aarch64-apple-darwin/release/nanopub-cli | |
- if: github.event_name == 'release' | |
run: | | |
mv target/release/nanopub-cli nanopub_x86_64_apple | |
mv target/aarch64-apple-darwin/release/nanopub-cli nanopub_aarch64_apple | |
- uses: softprops/action-gh-release@v1 | |
if: github.event_name == 'release' | |
with: | |
files: | | |
nanopub_x86_64_apple | |
nanopub_aarch64_apple | |
binary_windows: | |
name: 🪟 Build binaries for Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: rustup update | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo build --release | |
working-directory: ./cli | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: nanopub_x86_64_windows_msvc | |
path: target/release/nanopub-cli.exe | |
- if: github.event_name == 'release' | |
run: | | |
mv target/release/nanopub-cli.exe nanopub_x86_64_windows_msvc.exe | |
- uses: softprops/action-gh-release@v1 | |
if: github.event_name == 'release' | |
with: | |
files: | | |
nanopub_x86_64_windows_msvc.exe | |
wheel_linux: | |
name: 🐍🐧 Build wheel for Linux | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
architecture: [ "x86_64", "aarch64" ] | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: linux/${{ matrix.architecture }} | |
if: github.event_name == 'release' && matrix.architecture != 'x86_64' | |
- run: sed 's/%arch%/${{ matrix.architecture }}/g' .github/workflows/manylinux_build.sh | sed 's/%for_each_version%/${{ github.event_name == 'release' || '' }}/g' > .github/workflows/manylinux_build_script.sh | |
- run: docker run -v "$(pwd)":/workdir --platform linux/${{ matrix.architecture }} quay.io/pypa/manylinux2014_${{ matrix.architecture }} /bin/bash /workdir/.github/workflows/manylinux_build_script.sh | |
if: github.event_name == 'release' || matrix.architecture == 'x86_64' | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: nanopub_wheel_${{ matrix.architecture }}_linux | |
path: target/wheels/*.whl | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} | |
packages-dir: target/wheels | |
if: github.event_name == 'release' | |
wheel_linux_musl: | |
name: 🐍🐧 Build wheel for MUSL Linux | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
architecture: | |
- "x86_64" | |
# - "aarch64" # Takes too long (1h30) | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: linux/${{ matrix.architecture }} | |
if: github.event_name == 'release' && matrix.architecture != 'x86_64' | |
- run: sed 's/%arch%/${{ matrix.architecture }}/g' .github/workflows/musllinux_build.sh | sed 's/%for_each_version%/${{ github.event_name == 'release' || '' }}/g' > .github/workflows/musllinux_build_script.sh | |
- run: docker run -v "$(pwd)":/workdir --platform linux/${{ matrix.architecture }} quay.io/pypa/musllinux_1_1_${{ matrix.architecture }} /bin/bash /workdir/.github/workflows/musllinux_build_script.sh | |
if: github.event_name == 'release' || matrix.architecture == 'x86_64' | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: nanopub_wheel_${{ matrix.architecture }}_linux_musl | |
path: target/wheels/*.whl | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} | |
packages-dir: target/wheels | |
if: github.event_name == 'release' | |
wheel_mac: | |
name: 🐍🍎 Build wheel for MacOS | |
runs-on: macos-latest | |
env: | |
DEVELOPER_DIR: '/Applications/Xcode.app/Contents/Developer' | |
SDKROOT: '/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk' | |
MACOSX_DEPLOYMENT_TARGET: '10.14' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: rustup update && rustup target add aarch64-apple-darwin | |
- uses: Swatinem/rust-cache@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: pip | |
cache-dependency-path: '**/requirements.dev.txt' | |
- run: pip install -r python/requirements.dev.txt | |
- run: maturin build --release -m python/Cargo.toml | |
- run: pip install --no-index --find-links=target/wheels/ nanopub_sign | |
- run: rm -r target/wheels | |
- run: maturin build --release --target universal2-apple-darwin -m python/Cargo.toml | |
- run: maturin build --release -m python/Cargo.toml | |
if: github.event_name == 'release' | |
- run: maturin build --release --target aarch64-apple-darwin -m python/Cargo.toml | |
if: github.event_name == 'release' | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: nanopub_wheel_universal2_mac | |
path: target/wheels/*.whl | |
- run: pip install twine && twine upload target/wheels/* | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
if: github.event_name == 'release' | |
wheel_windows: | |
name: 🐍🪟 Build wheel for Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- run: rustup update | |
- uses: Swatinem/rust-cache@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: pip | |
cache-dependency-path: '**/requirements.dev.txt' | |
- run: Remove-Item -LiteralPath "C:\msys64\" -Force -Recurse | |
- run: pip install -r python/requirements.dev.txt | |
- run: maturin build --release -m python/Cargo.toml | |
- run: pip install --no-index --find-links=target/wheels/ nanopub_sign | |
- run: rm -r target/wheels | |
- run: maturin build --release -m python/Cargo.toml | |
- run: maturin sdist -m python/Cargo.toml | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: nanopub_wheel_x86_64_windows | |
path: target/wheels/*.whl | |
- run: pip install twine && twine upload target/wheels/* | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
if: github.event_name == 'release' | |
npm_tarball: | |
name: 🦊 Build npm package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodule: true | |
- run: rustup update | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install wasm-pack for JS | |
run: cargo install wasm-pack || true | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
registry-url: 'https://registry.npmjs.org' | |
cache: npm | |
cache-dependency-path: "./js/package.json" | |
- name: Build npm package | |
run: npm run pack | |
working-directory: ./js | |
- name: Upload tarball | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nanopub_sign_npm | |
path: ./js/pkg | |
- run: npm run release | |
working-directory: ./js | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
if: github.event_name == 'release' | |
publish_crates: | |
name: 📦️ Publish crates to crates.io | |
if: github.event_name == 'release' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup update | |
- run: cargo login $CRATES_IO_TOKEN | |
env: | |
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} | |
- run: cargo publish | |
working-directory: ./lib |