When building for Keyman 18 we don't have the `verify_source.sh` script, so the check always fails. With this change we skip the source verification in this case. Build-bot: skip Test-bot: skip |
||
|---|---|---|
| .. | ||
| api-verification.yml | ||
| auto-merge-keyman-server-pr.yml | ||
| build-test-publish-docker.yml | ||
| cleanup-ghcr.yml | ||
| close-linked-issues-for-merged-prs.yml | ||
| core-arm64-windows-test.yml | ||
| crowdin.yml | ||
| deb-packaging.yml | ||
| labeler.yml | ||
| npm-publish.yml | ||
| pr-build-status.yml | ||
| README.md | ||
api-verification.yml: checks Core API for incompatible changes
This action automatically verifies that the API of Keyman Core did not change in incompatible ways without incrementing the API version number. It applies to all platforms that use Core, even though we only run it on Linux.
- The action gets triggered by the completion of the Ubuntu packaging
workflow (
deb-packaging.yml). - The API version is defined in
core/CORE_API_VERSION.md. - The baseline file for comparing the API is
linux/debian/libkeymancore${API_VERSION}.symbols. The action will re-create this file and and makes it available as an artifact. - The API checks are implemented in
linux/scripts/verify_api.inc.sh.
More information about the API verification can be found in
docs/core-api-verification.md.
auto-merge-keyman-server-pr.yml
TODO
build-test-publish-docker.yml
TODO
cleanup-ghcr.yml
TODO
close-linked-issues-for-merged-prs.yml
TODO
core-arm64-windows-test.yml: Test Keyman Core on Windows/ARM64
This action allows us to test Keyman Core for Windows on ARM64 architecture with a GitHub agent, as we do not have any TeamCity Windows build agents with ARM64 arch.
It will normally be triggered as part of a test build from the resources/teamcity/triggers/trigger-test-builds.sh script.
You can manually trigger a core-arm64-windows-test action on GitHub on your fork of keymanapp/keyman. This is normally only needed to test changes to the action itself:
-
push the changes to your fork of keymanapp/keyman:
git push myfork HEAD:master -
make sure you have GHA enabled in the settings of your fork
-
seet
GITHUB_TOKEN=<your_gh_token> -
trigger a build with:
curl --write-out '\n' --request POST \ --header "Accept: application/vnd.github+json" \ --header "Authorization: token $GITHUB_TOKEN" \ --data "{ \"event_type\": \"core-arm64-windows-test: master\", \ \"client_payload\": { \ \"buildSha\": \"$(git rev-parse refs/heads/master)\", \ \"branch\": \"master\", \ \"user\": \"${USER}\", \ \"isTestBuild\": \"true\", \ \"force\": \"true\"}" \ https://api.github.com/repos/<yourgithubname>/keyman/dispatchesTo trigger a build for PR #1234 in a branch
my-pr-branchthis would look similar to this:curl --write-out '\n' --request POST \ --header "Accept: application/vnd.github+json" \ --header "Authorization: token $GITHUB_TOKEN" \ --data "{ \"event_type\": \"core-arm64-windows-test: PR #1234\", \ \"client_payload\": { \ \"buildSha\": \"$(git rev-parse refs/heads/my-pr-branch)\", \ \"branch\": \"my-pr-branch\", \ \"user\": \"${USER}\", \ \"isTestBuild\": \"true\", \ \"force\": \"true\"}" \ https://api.github.com/repos/<yourgithubname>/keyman/dispatches
....
crowdin.yml: Upload translation sources to Crowdin
This action automatically updates the English source strings on Crowdin https://crowdin.com/project/keyman/sources/files
based on the root crowdin.yml configuration file. The daily cron job currently runs at 6:00AM.
This should match the behavior of locally using the Crowdin CLI to upload sources.
deb-packaging.yml: Ubuntu Packaging GitHub Action
You can manually trigger a deb-packaging action on GitHub on your fork of keymanapp/keyman. This is normally only needed to test changes to the action itself:
-
push the changes to your fork of keymanapp/keyman:
git push myfork HEAD:master -
make sure you have GHA enabled in the settings of your fork
-
seet
GITHUB_TOKEN=<your_gh_token> -
trigger a build with:
curl --write-out '\n' --request POST \ --header "Accept: application/vnd.github+json" \ --header "Authorization: token $GITHUB_TOKEN" \ --data "{ \"event_type\": \"deb-pr-packaging: master\", \ \"client_payload\": { \ \"buildSha\": \"$(git rev-parse refs/heads/master)\", \ \"branch\": \"master\", \ \"baseBranch\": \"master\", \ \"baseRef\": \"$(git rev-parse refs/heads/master^)\", \ \"user\": \"${USER}\", \ \"isTestBuild\": \"true\", \ \"force\": \"true\"}" \ https://api.github.com/repos/<yourgithubname>/keyman/dispatchesTo trigger a build for PR #1234 in a branch
pr-1234this would look similar to this:curl --write-out '\n' --request POST \ --header "Accept: application/vnd.github+json" \ --header "Authorization: token $GITHUB_TOKEN" \ --data "{ \"event_type\": \"deb-pr-packaging: PR #1234\", \ \"client_payload\": { \ \"buildSha\": \"$(git rev-parse refs/heads/pr-1234)\", \ \"branch\": \"pr-1234\", \ \"baseBranch\": \"master\", \ \"baseRef\": \"$(git rev-parse refs/heads/master)\", \ \"user\": \"${USER}\", \ \"isTestBuild\": \"true\", \ \"force\": \"true\"}" \ https://api.github.com/repos/<yourgithubname>/keyman/dispatches
labeler.yml
TODO
npm-publish.yml
TODO
pr-build-status.yml
TODO