Skip to content

Fixed sampler chain not being freed #5

Fixed sampler chain not being freed

Fixed sampler chain not being freed #5

Workflow file for this run

name: Build Library
on:
push:
branches:
- '**'
jobs:
build-linux:
name: Build on Linux
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v3
- name: Install Swift
run: |
sudo apt-get update
sudo apt install -y curl
curl -s https://archive.swiftlang.xyz/install.sh | sudo bash
sudo apt install -y swiftlang
swift --version
- name: Build with Swift Package Manager
run: swift build
build-macos:
name: Build on macOS
runs-on: macos-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v3
- name: Build with Xcode
run: |
xcodebuild \
-scheme LLamaSwift \
-destination platform=macOS \
SWIFT_ACTIVE_COMPILATION_CONDITIONS=DEBUG
build-ios:
name: Build on iOS
runs-on: macos-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v3
- name: Build with Xcode
run: |
xcodebuild \
-scheme LLamaSwift \
-destination platform=iOS \
SWIFT_ACTIVE_COMPILATION_CONDITIONS=DEBUG