Skip to content

Experimental s3 and parquet support #802

Experimental s3 and parquet support

Experimental s3 and parquet support #802

Workflow file for this run

name: build_test
on:
pull_request:
types: [ opened, synchronize ]
jobs:
try-it:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- windows-2022
- macos-11
steps:
- name: Check out repository code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
- name: Install pixi (linux / osx)
if: ${{ runner.os != 'Windows' }}
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
- name: Install pixi (windows)
if: ${{ runner.os == 'Windows' }}
run: |
iwr -useb https://pixi.sh/install.ps1 | iex
echo "${HOME}/AppData/Local/pixi/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- uses: JarvusInnovations/background-action@v1
name: start minio server in the background
with:
run: pixi run start-minio &
wait-on: |
http://127.0.0.1:9000
tail: true
try-it2:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- windows-2022
- macos-11
steps:
- name: Check out repository code
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
- name: Install pixi (linux / osx)
if: ${{ runner.os != 'Windows' }}
run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
- name: Install pixi (windows)
if: ${{ runner.os == 'Windows' }}
run: |
iwr -useb https://pixi.sh/install.ps1 | iex
echo "${HOME}/AppData/Local/pixi/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: start minio server in the background
run: pixi run start-minio
#
# check-rust:
# runs-on: ubuntu-20.04
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi
# run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
# - name: Cache
# uses: actions/cache@v3
# with:
# key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-check-rust
# path: |
# ~/.cargo
# target
# .pixi
# - name: Check fmt
# run: pixi run check-rs-fmt
# - name: Check warnings
# run: pixi run check-rs-warnings
# - name: Check clippy
# run: pixi run check-rs-clippy
#
# test-rust:
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os:
# - ubuntu-20.04
# - windows-2022
# - macos-11
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi (linux / osx)
# if: ${{ runner.os != 'Windows' }}
# run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
# - name: Install pixi (windows)
# if: ${{ runner.os == 'Windows' }}
# run: |
# iwr -useb https://pixi.sh/install.ps1 | iex
# echo "${HOME}/AppData/Local/pixi/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
# - name: Cache
# uses: actions/cache@v3
# with:
# key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-test-rust
# path: |
# ~/.cargo
# target
# .pixi
# - uses: JarvusInnovations/background-action@v1
# name: start minio server in the background
# with:
# run: pixi run start-minio &
# wait-on: |
# http://127.0.0.1:9000
# tail: true
# - name: Test rust
# run: |
# pixi run test-rs --release
# - name: Upload test artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# if: always()
# with:
# name: vegafusion-rt-test-images
# path: |
# vegafusion-runtime/tests/output
#
# build-vegafusion-wasm:
# runs-on: ubuntu-20.04
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi (linux / osx)
# run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
# - name: Cache
# uses: actions/cache@v3
# with:
# key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-vegafusion-wasm
# path: |
# ~/.cargo
# target
# .pixi
# - name: Build package
# run: |
# pixi run pack-wasm
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-wasm-packages
# path: vegafusion-wasm/pkg/vegafusion-wasm-*.tgz
#
# # Use maturin action to build linux wheels within proper manylinux compatible containers
# # (This is why we don't use the pixi "build-py-embed" action)
# build-vegafusion-python-embed-linux-64:
# runs-on: ubuntu-latest
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install latest stable Rust toolchain
# uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # pin@v1
# with:
# toolchain: stable
# override: true
# - name: Cache rust dependencies
# uses: Swatinem/rust-cache@81d053bdb0871dcd3f10763c8cc60d0adc41762b # pin@v1
# with:
# cache-on-failure: True
# - name: Build wheels (Linux)
# uses: messense/maturin-action@9357a23898d2fca5ef8da7ac38aaaedab4ef218f # [email protected]
# with:
# command: build
# manylinux: 2014
# rust-toolchain: stable
# args: --release -m vegafusion-python-embed/Cargo.toml --features=protobuf-src --strip
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-python-embed-wheels
# path: |
# target/wheels/*.tar.gz
# target/wheels/*.whl
#
# build-vegafusion-python-embed-linux-arm64:
# runs-on: ubuntu-latest
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install latest stable Rust toolchain
# uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # pin@v1
# with:
# toolchain: stable
# override: true
# - name: Cache rust dependencies
# uses: Swatinem/rust-cache@81d053bdb0871dcd3f10763c8cc60d0adc41762b # pin@v1
# with:
# cache-on-failure: True
# - name: Download arm64 toolchain
# run: |
# rustup target add aarch64-unknown-linux-gnu
# - name: Build arm64 wheels
# uses: messense/maturin-action@6d52485c3b3044e20b4c8ee6ce6f61e20a7645b0 # pin@v1
# with:
# command: build
# manylinux: 2014
# rust-toolchain: stable
# args: --release -m vegafusion-python-embed/Cargo.toml --features=protobuf-src --strip --target aarch64-unknown-linux-gnu
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-python-embed-wheels
# path: |
# target/wheels/*.tar.gz
# target/wheels/*.whl
#
# build-vegafusion-python-embed-win-64:
# runs-on: windows-2022
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi
# run: |
# iwr -useb https://pixi.sh/install.ps1 | iex
# echo "${HOME}/AppData/Local/pixi/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
# - name: Cache
# uses: actions/cache@v3
# with:
# key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-vegafusion-python-embed-win-64
# path: |
# ~/.cargo
# target
# .pixi
# - name: Build vegafusion-python-embed
# run: |
# pixi run build-py-embed
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-python-embed-wheels
# path: |
# target/wheels/*.tar.gz
# target/wheels/*.whl
#
# build-vegafusion-python-embed-osx-64:
# runs-on: macos-11
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi
# run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
# - name: Cache
# uses: actions/cache@v3
# with:
# key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-vegafusion-python-embed-osx-64
# path: |
# ~/.cargo
# target
# .pixi
# - name: Build vegafusion-python-embed
# run: |
# pixi run build-py-embed
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-python-embed-wheels
# path: |
# target/wheels/*.tar.gz
# target/wheels/*.whl
#
# build-vegafusion-python-embed-osx-arm64:
# runs-on: macos-11
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi
# run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
# - name: Cache
# uses: actions/cache@v3
# with:
# key: osx-arm64-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-vegafusion-python-embed-osx-arm64
# path: |
# ~/.cargo
# target
# .pixi
# - name: Build vegafusion-server
# run: |
# pixi run python automation/download_rust_target.py aarch64-apple-darwin
# pixi run build-py-embed --target aarch64-apple-darwin
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-python-embed-wheels
# path: |
# target/wheels/*.tar.gz
# target/wheels/*.whl
#
# build-vegafusion-packages:
# runs-on: ubuntu-20.04
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi (linux / osx)
# run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
# - name: Cache
# uses: actions/cache@v3
# with:
# key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-vegafusion-packages
# path: |
# ~/.cargo
# target
# .pixi
# - name: Build vegafusion wheel
# run: |
# pixi run build-py-vegafusion
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-packages
# path: |
# python/vegafusion/dist/*.whl
# python/vegafusion/dist/*.tar.gz
#
# build-vegafusion-jupyter-packages:
# runs-on: ubuntu-20.04
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi (linux / osx)
# run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
# - name: Cache
# uses: actions/cache@v3
# with:
# key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-vegafusion-jupyter-packages
# path: |
# ~/.cargo
# target
# .pixi
# - name: Build vegafusion-jupyter wheel
# run: |
# echo JupyterLab Version: `pixi run jupyter-lab --version`
# pixi run build-py-jupyter
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-jupyter-packages
# path: |
# python/vegafusion-jupyter/dist/*.whl
# python/vegafusion-jupyter/dist/*.tar.gz
#
# test-vegafusion-python-linux-64:
# runs-on: ubuntu-20.04
# needs: [build-vegafusion-python-embed-linux-64, build-vegafusion-packages]
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Setup Python
# uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # [email protected]
# with:
# python-version: '3.11'
# - name: Install fonts on Linux
# if: runner.os == 'Linux'
# run: |
# echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections
# sudo apt-get install ttf-mscorefonts-installer
# - name: Download vegafusion-python-embed wheel
# uses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # pin@v2
# with:
# name: vegafusion-python-embed-wheels
# path: target/wheels/
# - name: Download vegafusion wheel
# uses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # pin@v2
# with:
# name: vegafusion-packages
# path: target/wheels/
# - name: install wheels
# working-directory: target/wheels/
# run: |
# ls -la
# python -m pip install vegafusion-*.whl
# python -m pip install vegafusion_python_embed-*manylinux_2_17_x86_64*.whl
# python -m pip install pytest vega-datasets polars duckdb "vl-convert-python>=1.0.1rc1" scikit-image pandas==2.0
# - name: Test vegafusion
# working-directory: python/vegafusion/
# run: pytest
#
# test-vegafusion-python-osx-64:
# runs-on: macos-11
# needs: [build-vegafusion-python-embed-osx-64, build-vegafusion-packages]
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Setup Python
# uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # [email protected]
# with:
# python-version: '3.10'
# - name: Download vegafusion-python-embed wheel
# uses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # pin@v2
# with:
# name: vegafusion-python-embed-wheels
# path: target/wheels/
# - name: Download vegafusion wheel
# uses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # pin@v2
# with:
# name: vegafusion-packages
# path: target/wheels/
# - name: install wheels
# working-directory: target/wheels/
# run: |
# ls -la
# python -m pip install vegafusion-*.whl
# python -m pip install vegafusion_python_embed-*macosx_10_7_x86_64.whl
# python -m pip install pytest vega-datasets polars duckdb altair vl-convert-python scikit-image pandas==2.0
#
# # Downgrade pyarrow to 10.0.1
# python -m pip install pyarrow==10.0.1
# - name: Test vegafusion
# working-directory: python/vegafusion/
# run: pytest
#
# test-vegafusion-python-win-64:
# runs-on: windows-2022
# needs: [build-vegafusion-python-embed-win-64, build-vegafusion-packages]
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Setup Python
# uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # [email protected]
# with:
# python-version: '3.8'
# - name: Download vegafusion-python-embed wheel
# uses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # pin@v2
# with:
# name: vegafusion-python-embed-wheels
# path: target/wheels/
# - name: Download vegafusion wheel
# uses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # pin@v2
# with:
# name: vegafusion-packages
# path: target/wheels/
# - name: install wheels
# working-directory: target/wheels/
# shell: powershell
# run: |
# Get-ChildItem -Force
# $vegafusion = Get-ChildItem -Name "vegafusion-*.whl" | Select-Object -First 1
# $vegafusion_python_embed = Get-ChildItem -Name "vegafusion_python_embed-*win_amd64.whl" | Select-Object -First 1
#
# python -m pip install $vegafusion
# python -m pip install $vegafusion_python_embed
# python -m pip install pytest vega-datasets polars duckdb vl-convert-python scikit-image
# - name: Test vegafusion
# working-directory: python/vegafusion/
# run: pytest
#
# test-vegafusion-jupyter-linux-64:
# runs-on: ubuntu-20.04
# needs:
# - build-vegafusion-python-embed-linux-64
# - build-vegafusion-packages
# - build-vegafusion-jupyter-packages
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi on linux
# run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
# - name: Cache
# uses: actions/cache@v3
# with:
# key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-test-vegafusion-jupyter-linux-64
# path: |
# .pixi
# - name: Install Chrome
# uses: browser-actions/setup-chrome@f0ff752add8c926994566c80b3ceadfd03f24d12 # pin@latest
# with:
# chrome-version: stable
# - name: Download vegafusion-python-embed wheel
# uses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # pin@v2
# with:
# name: vegafusion-python-embed-wheels
# path: target/wheels/
# - name: Download vegafusion wheel
# uses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # pin@v2
# with:
# name: vegafusion-packages
# path: target/wheels/
# - name: Download vegafusion-jupyter wheel
# uses: actions/download-artifact@cbed621e49e4c01b044d60f6c80ea4ed6328b281 # pin@v2
# with:
# name: vegafusion-jupyter-packages
# path: target/wheels/
# - name: install wheels
# run: |
# ls -la target/wheels/
# pixi run pip install target/wheels/vegafusion_python_embed-*manylinux_2_17_x86_64*.whl
# pixi run pip install target/wheels/vegafusion-*.whl
# pixi run pip install target/wheels/vegafusion_jupyter-*.whl
# pixi run pip install chromedriver-binary-auto
# pixi run pip list
# - name: Test vegafusion jupyter
# run: |
# VEGAFUSION_TEST_HEADLESS=1 pixi run pytest python/vegafusion-jupyter/tests
# - name: Upload test artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# if: always()
# with:
# name: vegafusion-jupyter-test-failures
# path: |
# python/vegafusion-jupyter/tests/failures/*
#
# build-vegafusion-server-linux-64:
# runs-on: ubuntu-20.04
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi
# run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
# - name: Cache
# uses: actions/cache@v3
# with:
# key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-vegafusion-server-linux-64
# path: |
# ~/.cargo
# target
# .pixi
# - name: Build vegafusion-server
# run: |
# pixi run build-rs-vegafusion-server
# - name: zip executable
# uses: vimtor/action-zip@26a249fb00d43ca98dad77a4b3838025fc226aa1 # [email protected]
# with:
# files: target/release/vegafusion-server
# dest: vegafusion-server-linux-64.zip
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-server
# path: |
# vegafusion-server-*
#
## # Below is an Attempt to cross compile to linux aarch64 within conda environment.
## # It fails in compiling protobuf-src. So instead we fall back to the direct use of
## # cargo (without involving conda).
##
## build-vegafusion-server-linux-arm64:
## runs-on: ubuntu-20.04
## steps:
## - name: Check out repository code
## uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
## - name: Install pixi
## run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
## - name: Cache
## uses: actions/cache@v3
## with:
## key: linux-arm64-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-server
## path: |
## ~/.cargo
## target
## .pixi
## - name: Build vegafusion-server
## run: |
## pixi run python automation/download_rust_target.py aarch64-unknown-linux-gnu
## pixi add gcc_linux-aarch64 -p linux-64
## export RUSTFLAGS="-C linker=aarch64-linux-gnu-gcc"
## pixi run build-rs-vegafusion-server --features=protobuf-src --target aarch64-unknown-linux-gnu
## - name: zip executable
## uses: vimtor/action-zip@26a249fb00d43ca98dad77a4b3838025fc226aa1 # [email protected]
## with:
## files: target/aarch64-unknown-linux-gnu/release/vegafusion-server
## dest: vegafusion-server-linux-arm64.zip
## - name: Upload artifacts
## uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
## with:
## name: vegafusion-server
## path: |
## vegafusion-server-*
#
#
# build-vegafusion-server-linux-arm64:
# runs-on: ubuntu-latest
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install latest stable Rust toolchain
# uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # pin@v1
# with:
# toolchain: stable
# override: true
# - name: Cache rust dependencies
# uses: Swatinem/rust-cache@81d053bdb0871dcd3f10763c8cc60d0adc41762b # pin@v1
# with:
# cache-on-failure: True
# - name: Download arm64 toolchain
# run: |
# rustup target add aarch64-unknown-linux-gnu
# - name: Download gcc for cross compilation
# run: |
# sudo apt-get update
# sudo apt-get install gcc-aarch64-linux-gnu
# - name: Build vegafusion-server
# uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # pin@v1
# env:
# RUSTFLAGS: "-C linker=aarch64-linux-gnu-gcc"
# with:
# command: build
# args: -p vegafusion-server --release --features=protobuf-src --target=aarch64-unknown-linux-gnu
# - name: zip executable
# uses: vimtor/action-zip@26a249fb00d43ca98dad77a4b3838025fc226aa1 # [email protected]
# with:
# files: target/aarch64-unknown-linux-gnu/release/vegafusion-server
# dest: vegafusion-server-linux-arm64.zip
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-server
# path: |
# vegafusion-server-*
#
# build-vegafusion-server-win-64:
# runs-on: windows-2022
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi
# run: |
# iwr -useb https://pixi.sh/install.ps1 | iex
# echo "${HOME}/AppData/Local/pixi/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
# - name: Cache
# uses: actions/cache@v3
# with:
# key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-vegafusion-server-win-64
# path: |
# ~/.cargo
# target
# .pixi
# - name: Build vegafusion-server
# run: |
# pixi install -vvv
# pixi run build-rs-vegafusion-server
# - name: zip executable
# uses: vimtor/action-zip@26a249fb00d43ca98dad77a4b3838025fc226aa1 # [email protected]
# with:
# files: target/release/vegafusion-server.exe
# dest: vegafusion-server-win-64.zip
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-server
# path: |
# vegafusion-server-*
#
# build-vegafusion-server-osx-64:
# runs-on: macos-11
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi
# run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
# - name: Cache
# uses: actions/cache@v3
# with:
# key: ${{ runner.os }}-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-vegafusion-server-osx-64
# path: |
# ~/.cargo
# target
# .pixi
# - name: Build vegafusion-server
# run: |
# pixi run build-rs-vegafusion-server
# - name: zip executable
# uses: vimtor/action-zip@26a249fb00d43ca98dad77a4b3838025fc226aa1 # [email protected]
# with:
# files: target/release/vegafusion-server
# dest: vegafusion-server-osx-64.zip
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-server
# path: |
# vegafusion-server-*
#
# build-vegafusion-server-osx-arm64:
# runs-on: macos-11
# steps:
# - name: Check out repository code
# uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # [email protected]
# - name: Install pixi
# run: curl -fsSL https://pixi.sh/install.sh | bash && echo "${HOME}/.pixi/bin" >> $GITHUB_PATH
# - name: Cache
# uses: actions/cache@v3
# with:
# key: osx-arm64-${{ hashFiles('pixi.lock', 'Cargo.lock') }}-build-vegafusion-server-osx-arm64
# path: |
# ~/.cargo
# target
# .pixi
# - name: Build vegafusion-server
# run: |
# pixi run python automation/download_rust_target.py aarch64-apple-darwin
# pixi run build-rs-vegafusion-server --target aarch64-apple-darwin
# - name: zip executable
# uses: vimtor/action-zip@26a249fb00d43ca98dad77a4b3838025fc226aa1 # [email protected]
# with:
# files: target/aarch64-apple-darwin/release/vegafusion-server
# dest: vegafusion-server-osx-arm64.zip
# - name: Upload artifacts
# uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # [email protected]
# with:
# name: vegafusion-server
# path: |
# vegafusion-server-*