Skip to content

feat(corpora_ai): support azure_endpoint for openai as well #3

feat(corpora_ai): support azure_endpoint for openai as well

feat(corpora_ai): support azure_endpoint for openai as well #3

Workflow file for this run

name: Cross-Platform Rust Build
on:
# Trigger the workflow on push to master and pull requests affecting the .github directory
push:
branches:
- master
pull_request:
paths:
- '.github/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- aarch64-unknown-linux-gnu
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install cross
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Build the project using cross
run: cross build --release --target ${{ matrix.target }}
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.target }}-binary
path: target/${{ matrix.target }}/release/<your-binary-name>