Replies: 1 comment 4 replies
-
@xerial sorry to ask again, but would you be open to add a personal access token in the secrets, so we could trigger CI after native libs are built and committed from CI? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi @xerial,
i have recently added support to build Mac arm64 (M1) native library through Docker.
Being able to compile all the platforms through Docker opened the door to build all the native libs from CI (workflow, documentation).
It's been working well, and we can do 2 things:
/native
), which will commit the new libraries back to the PR branchHowever i noticed that the commit with the new libraries doesn't trigger CI, this is due to this.
You can see that it failed for a PR here:

And on the

master
branch here:In order for this to work, we need to configure a Personal Access Token in the repository's secrets, and use it instead of the default
GITHUB_TOKEN
secret.@xerial would you be open to create a PAT with the
repo
scope, unlimited expiry, and add this to the repo secret under the key namePERSONAL_TOKEN
?Once done i can modify the existing workflow to use this token instead of the default.
Thanks !
Beta Was this translation helpful? Give feedback.
All reactions