Skip to content

Commit

Permalink
chore: add ci check
Browse files Browse the repository at this point in the history
  • Loading branch information
mzbac committed Oct 12, 2024
1 parent 760c443 commit ce816dd
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches: [main]

jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.0

- name: Enable PrepareMetalShaders plugin
run: defaults write com.apple.dt.Xcode IDESkipPackagePluginFingerprintValidation -bool YES

- name: Build and test
run: |
xcodebuild -resolvePackageDependencies
xcodebuild test -scheme flux.swift -destination 'platform=macOS' -skipPackagePluginValidation ENABLE_PLUGIN_PREPAREMLSHADERS=YES
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ For detailed configuration options, refer to the `FluxConfiguration.swift` file.

## TODO

- [ ] Support for FLUX.1 Dev model
- [x] Support for FLUX.1 Dev model
- [ ] Integration of LoRA
- [ ] Image-to-image generation

Expand Down

0 comments on commit ce816dd

Please sign in to comment.