Skip to content

Update configs #101

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jul 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions .github/workflows/runnable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,19 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy
- uses: actions/setup-java@v2
- uses: actions/setup-java@v4
with:
distribution: 'adopt'
distribution: 'zulu'
java-version: '17'
- uses: subosito/flutter-action@v2
- uses: flutter-actions/setup-flutter@v4
with:
channel: 'stable'
channel: stable
cache: true
- uses: bluefireteam/melos-action@v3
- name: Replace symlinks
run: ./scripts/replace_symlinks_before_publish.sh
Expand All @@ -36,3 +37,14 @@ jobs:
- name: Publish dry run
run: melos run publish-dry-run
if: ${{ github.repository == 'AstroxNetwork/agent_dart' && matrix.os == 'ubuntu-latest' }}
- name: Build example
working-directory: packages/agent_dart/example
shell: bash
run: |
if [[ "${{ matrix.os }}" == 'macos-latest' ]]; then
flutter build ios --debug --no-codesign
elif [[ "${{ matrix.os }}" == 'ubuntu-latest' ]]; then
flutter build apk --debug
else
echo "Well, nothing."
fi
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,4 @@ pubspec_overrides.yaml
# build files
/platform-build/
/target/
/Cargo.lock
/platform-build
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ that can be found in the LICENSE file. -->

# Changelog

## 1.0.0-dev.38

- Manually fixes Gradle platform plugin detection.
- Fixes `base64ct` build failure.

## 1.0.0-dev.37

- Update `package:flutter_rust_bridge` to `2.11.1`.
Expand Down
Loading
Loading