Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
3f4f4ad
[Tizen] Cherrypicks from flutter-3.27.1 of flutter-tizen/engine
JSUYA Mar 5, 2025
c531c69
[Tizen] Add CI related files
JSUYA Mar 5, 2025
bf159cf
[Tizen][impeller] Disable gles3 compile
JSUYA Mar 12, 2025
1b2291a
[Tizen] Support EmbedderExternalTextureGL for impeller
xiaowei-guan Mar 18, 2025
da44319
[Tizen] Remove unnecessary CI
JSUYA May 23, 2025
5ba818e
[Tizen] Upgrade llvm 17 to 18
JSUYA May 23, 2025
ab69eac
[Tizen] Temporary fix to Microsoft STL compiler compatibility checks
JSUYA Jun 23, 2025
bdc7345
[Tizen] Enable vulkan (#11)
xiaowei-guan Aug 29, 2025
c2a940b
[Tizen] Add x64 release (#13)
JSUYA Sep 12, 2025
325d001
[Tizen] Disable x64 symbol generation temporary (#14)
JSUYA Sep 17, 2025
8383d7a
[Tizen] Update sysroot download URL (#15)
JSUYA Sep 18, 2025
8ec5b53
[ci] Fix window version to 2022
JSUYA Sep 19, 2025
c52f29a
[Tizen] Support render texture for vulkan + impeller (#17)
xiaowei-guan Oct 11, 2025
938be21
[Tizen] Fix external texture gl crash issue (#18)
xiaowei-guan Nov 24, 2025
250b2b7
[Tizen][ci] Add ignore linker option
JSUYA Dec 5, 2025
6da9b59
[Tizen] Remove unnecessary CI
JSUYA Dec 5, 2025
72b3283
[Tizen] Disable lto option
JSUYA Dec 5, 2025
e277c5c
[Tizen][ci] Update macos runnner for intel mac
JSUYA Dec 12, 2025
feb9dd9
[Tizen] Fix GPU memory leak issue (#21)
xiaowei-guan Dec 23, 2025
7cd0548
[Tizen] Re-implemented render external texture gl for impeller to avo…
xiaowei-guan Feb 6, 2026
0d82328
[Tizen] Add syscall compat header for custom Linux toolchains
JSUYA Mar 11, 2026
45fd123
[Tizen] Remove unnecessary CI (#28)
JSUYA Mar 24, 2026
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
23 changes: 0 additions & 23 deletions .github/dependabot.yml

This file was deleted.

261 changes: 0 additions & 261 deletions .github/labeler.yml

This file was deleted.

68 changes: 0 additions & 68 deletions .github/release.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build Docker

on: [workflow_dispatch]

jobs:
builder:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v5
with:
context: engine/src/flutter/ci/tizen
file: engine/src/flutter/ci/tizen/Dockerfile
push: true
tags: ghcr.io/${{ github.repository_owner }}/build-engine:latest
Loading
Loading