-
-
Notifications
You must be signed in to change notification settings - Fork 21.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement screen reader support using AccessKit library.
- Loading branch information
Showing
145 changed files
with
9,293 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
env: | ||
# Used for the cache key. Add version suffix to force clean build. | ||
GODOT_BASE_BRANCH: master | ||
SCONSFLAGS: verbose=yes warnings=extra werror=yes module_text_server_fb_enabled=yes strict_checks=yes | ||
SCONSFLAGS: verbose=yes warnings=extra werror=yes module_text_server_fb_enabled=yes strict_checks=yes "accesskit_sdk_path=${{github.workspace}}/accesskit-c-0.13.1/" | ||
DOTNET_NOLOGO: true | ||
DOTNET_CLI_TELEMETRY_OPTOUT: true | ||
TSAN_OPTIONS: suppressions=misc/error_suppressions/tsan.txt | ||
|
@@ -133,6 +133,17 @@ jobs: | |
python-version: 3.8 | ||
scons-version: 4.0 | ||
|
||
- name: Download pre-built AccessKit | ||
uses: dsaltares/[email protected] | ||
with: | ||
repo: AccessKit/accesskit-c | ||
version: tags/0.13.1 | ||
file: accesskit-c-0.13.1.zip | ||
target: accesskit-c-0.13.1/accesskit_c.zip | ||
|
||
- name: Extract pre-built AccessKit | ||
run: unzip -o accesskit-c-0.13.1/accesskit_c.zip | ||
|
||
- name: Setup GCC problem matcher | ||
uses: ammaraskar/gcc-problem-matcher@master | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
env: | ||
# Used for the cache key. Add version suffix to force clean build. | ||
GODOT_BASE_BRANCH: master | ||
SCONSFLAGS: verbose=yes warnings=extra werror=yes module_text_server_fb_enabled=yes strict_checks=yes | ||
SCONSFLAGS: verbose=yes warnings=extra werror=yes module_text_server_fb_enabled=yes strict_checks=yes "accesskit_sdk_path=${{github.workspace}}/accesskit-c-0.13.1/" | ||
|
||
concurrency: | ||
group: ci-${{ github.actor }}-${{ github.head_ref || github.run_number }}-${{ github.ref }}-macos | ||
|
@@ -48,6 +48,17 @@ jobs: | |
- name: Setup Python and SCons | ||
uses: ./.github/actions/godot-deps | ||
|
||
- name: Download pre-built AccessKit | ||
uses: dsaltares/[email protected] | ||
with: | ||
repo: AccessKit/accesskit-c | ||
version: tags/0.13.1 | ||
file: accesskit-c-0.13.1.zip | ||
target: accesskit-c-0.13.1/accesskit_c.zip | ||
|
||
- name: Extract pre-built AccessKit | ||
run: unzip -o accesskit-c-0.13.1/accesskit_c.zip | ||
|
||
- name: Setup Vulkan SDK | ||
run: | | ||
sh misc/scripts/install_vulkan_sdk_macos.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
env: | ||
# Used for the cache key. Add version suffix to force clean build. | ||
GODOT_BASE_BRANCH: master | ||
SCONSFLAGS: verbose=yes warnings=extra werror=yes module_text_server_fb_enabled=yes d3d12=yes strict_checks=yes "angle_libs=${{ github.workspace }}/" | ||
SCONSFLAGS: verbose=yes warnings=extra werror=yes module_text_server_fb_enabled=yes d3d12=yes strict_checks=yes "angle_libs=${{ github.workspace }}/" "accesskit_sdk_path=${{github.workspace}}/accesskit-c-0.13.1/" | ||
SCONS_CACHE_MSVC_CONFIG: true | ||
|
||
concurrency: | ||
|
@@ -86,6 +86,17 @@ jobs: | |
- name: Extract pre-built ANGLE static libraries | ||
run: Expand-Archive -Force angle/angle.zip ${{ github.workspace }}/ | ||
|
||
- name: Download pre-built AccessKit | ||
uses: dsaltares/[email protected] | ||
with: | ||
repo: AccessKit/accesskit-c | ||
version: tags/0.13.1 | ||
file: accesskit-c-0.13.1.zip | ||
target: accesskit-c-0.13.1/accesskit_c.zip | ||
|
||
- name: Extract pre-built AccessKit | ||
run: unzip -o accesskit-c-0.13.1/accesskit_c.zip | ||
|
||
- name: Setup MSVC problem matcher | ||
if: matrix.compiler == 'msvc' | ||
uses: ammaraskar/msvc-problem-matcher@master | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.