chore: Update Rust workflow to install dependencies for Linux target #20
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: Rust Build, Test, and Publish | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
release: | |
types: [created] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: x86_64-pc-windows-gnu | |
archive: zip | |
- target: x86_64-unknown-linux-musl | |
archive: tar.gz | |
- target: x86_64-apple-darwin | |
archive: zip | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Install Rust toolchain | |
run: rustup target add ${{ matrix.target }} | |
- name: Set up Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: ${{ matrix.target }} | |
override: true | |
- name: Install dependencies for Windows target | |
if: matrix.target == 'x86_64-pc-windows-gnu' | |
run: sudo apt-get install mingw-w64 -y | |
- name: Install dependencies for Linux target | |
if: matrix.target == 'x86_64-unknown-linux-musl' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y pkg-config libssl-dev musl-tools | |
export OPENSSL_DIR=/usr/include/openssl | |
export PKG_CONFIG_SYSROOT_DIR=/usr | |
export PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig | |
- name: Build the project | |
run: cargo build --release --target ${{ matrix.target }} | |
- name: Package the build | |
run: | | |
mkdir -p dist | |
if [ "${{ matrix.archive }}" == "zip" ]; then | |
zip -j dist/ml2pdf-${{ matrix.target }}.zip target/${{ matrix.target }}/release/ml2pdf* | |
else | |
tar -czvf dist/ml2pdf-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ml2pdf* | |
fi | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: rust-app-${{ matrix.target }} | |
path: dist/ | |
publish: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: rust-app-${{ matrix.target }} | |
path: dist/ | |
- name: Get current date | |
id: get_date | |
run: echo "DATE=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV | |
- name: Publish release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: v${{ env.DATE }} | |
release_name: Release ${{ env.DATE }} | |
draft: false | |
prerelease: false | |
- name: Upload artifacts to release | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: dist/ml2pdf-${{ matrix.target }}.${{ matrix.archive }} | |
asset_name: ml2pdf-${{ matrix.target }}.${{ matrix.archive }} | |
asset_content_type: application/octet-stream | |
- name: Clean up artifacts | |
run: rm -rf dist/ |