Skip to content

Commit f2d4bad

Browse files
authored
Update configs (#101)
2 parents db364d5 + 7f3fabe commit f2d4bad

File tree

11 files changed

+1552
-16
lines changed

11 files changed

+1552
-16
lines changed

.github/workflows/runnable.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,19 @@ jobs:
1616
matrix:
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- uses: dtolnay/rust-toolchain@stable
2121
with:
2222
toolchain: stable
2323
components: rustfmt, clippy
24-
- uses: actions/setup-java@v2
24+
- uses: actions/setup-java@v4
2525
with:
26-
distribution: 'adopt'
26+
distribution: 'zulu'
2727
java-version: '17'
28-
- uses: subosito/flutter-action@v2
28+
- uses: flutter-actions/setup-flutter@v4
2929
with:
30-
channel: 'stable'
30+
channel: stable
31+
cache: true
3132
- uses: bluefireteam/melos-action@v3
3233
- name: Replace symlinks
3334
run: ./scripts/replace_symlinks_before_publish.sh
@@ -36,3 +37,14 @@ jobs:
3637
- name: Publish dry run
3738
run: melos run publish-dry-run
3839
if: ${{ github.repository == 'AstroxNetwork/agent_dart' && matrix.os == 'ubuntu-latest' }}
40+
- name: Build example
41+
working-directory: packages/agent_dart/example
42+
shell: bash
43+
run: |
44+
if [[ "${{ matrix.os }}" == 'macos-latest' ]]; then
45+
flutter build ios --debug --no-codesign
46+
elif [[ "${{ matrix.os }}" == 'ubuntu-latest' ]]; then
47+
flutter build apk --debug
48+
else
49+
echo "Well, nothing."
50+
fi

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,4 @@ pubspec_overrides.yaml
3535
# build files
3636
/platform-build/
3737
/target/
38-
/Cargo.lock
3938
/platform-build

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ that can be found in the LICENSE file. -->
44

55
# Changelog
66

7+
## 1.0.0-dev.38
8+
9+
- Manually fixes Gradle platform plugin detection.
10+
- Fixes `base64ct` build failure.
11+
712
## 1.0.0-dev.37
813

914
- Update `package:flutter_rust_bridge` to `2.11.1`.

0 commit comments

Comments
 (0)