Publish libaec #29
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: Publish libaec | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: ${{ matrix.target }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- platform: "macos-latest" # for Arm-based Macs (M1 and above) | |
args: "--target aarch64-apple-darwin" | |
build-dir: "libaec-osx-aarch64" | |
archive: "tar" | |
target: "aarch64-apple-darwin" | |
- platform: "macos-latest" # for Apple IOS | |
args: "--target aarch64-apple-ios" | |
build-dir: "libaec-ios-aarch64" | |
archive: "tar" | |
target: "aarch64-apple-ios" | |
- platform: "macos-latest" # for Intel-based Macs | |
args: "--target x86_64-apple-darwin" | |
build-dir: "libaec-osx-x86-64" | |
archive: "tar" | |
target: "x86_64-apple-darwin" | |
- platform: "ubuntu-22.04" # Ubuntu 22.04 x86_64 | |
args: "" | |
build-dir: "libaec-linux-x86-64" | |
archive: "tar" | |
target: "x86_64-unknown-linux-gnu" | |
- platform: "windows-latest" # Windows x86_64 | |
args: "--target x86_64-pc-windows-msvc" | |
build-dir: "libaec-win-x86-64" | |
archive: "zip" | |
target: "x86_64-pc-windows-msvc" | |
- platform: "windows-latest" # Windows ARM (aarch64) | |
args: "--target aarch64-pc-windows-msvc" | |
build-dir: "libaec-win-aarch64" | |
archive: "zip" | |
target: "aarch64-pc-windows-msvc" | |
- platform: "ubuntu-22.04" # Raspberry Pi 4 (64-bit ARM) | |
args: "--target aarch64-unknown-linux-gnu" | |
build-dir: "libaec-linux-aarch64" | |
archive: "tar" | |
target: "aarch64-unknown-linux-gnu" | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
- name: Install Linux arm64 toolchain | |
run: | | |
sudo apt-get install g++-aarch64-linux-gnu | |
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-g++" >> $GITHUB_ENV | |
echo "CC=aarch64-linux-gnu-gcc" >> $GITHUB_ENV | |
echo "CXX=aarch64-linux-gnu-g++" >> $GITHUB_ENV | |
if: matrix.target == 'aarch64-unknown-linux-gnu' | |
- name: Install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.target }} | |
- name: Rust cache | |
uses: swatinem/rust-cache@v2 | |
- name: Set up build directory | |
run: mkdir -p ${{ matrix.build-dir }} | |
- name: Build libaec | |
run: cargo build -p libaec --release ${{ matrix.args }} | |
- name: Copy files | |
run: | | |
# Headers | |
cp crates/libaec/libaec.h "${{ matrix.build-dir }}/" | |
# Unix | |
cp -f "target/${{ matrix.target }}/release/libaec.a" "${{ matrix.build-dir }}/" || : | |
cp -f "target/${{ matrix.target }}/release/libaec.so" "${{ matrix.build-dir }}/" || : | |
cp -f "target/${{ matrix.target }}/release/libaec.dylib" "${{ matrix.build-dir }}/" || : | |
# Linux? | |
cp -f "target/release/libaec.a" "${{ matrix.build-dir }}/" || : | |
cp -f "target/release/libaec.so" "${{ matrix.build-dir }}/" || : | |
# Windows | |
cp -f "target/${{ matrix.target }}/release/aec.lib" "${{ matrix.build-dir }}/" || : | |
cp -f "target/${{ matrix.target }}/release/aec.dll" "${{ matrix.build-dir }}/" || : | |
shell: bash | |
- name: Create archive | |
run: | | |
if [[ "${{ matrix.archive }}" == "tar" ]]; then | |
tar -czvf ${{ matrix.build-dir }}.tar.gz ${{ matrix.build-dir }} | |
elif [[ "${{ matrix.archive }}" == "zip" ]]; then | |
7z a ${{ matrix.build-dir }}.zip ${{ matrix.build-dir }} | |
fi | |
shell: bash | |
- name: Uplaod to releases | |
run: | | |
latestTag=$(gh release view --json tagName --jq '.tagName') | |
gh release upload $latestTag ${{ matrix.build-dir }}.* --clobber | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
shell: bash |