Lucas Partridge
Lucas Partridge
I don't think this is a bug. If you look at https://developers.google.com/admob/android/eu-consent#update_consent_status it says: > **Once consent information is successfully updated**, you can also check ConsentInformation.getInstance(context).isRequestLocationInEeaOrUnknown() to see if the...
Duplicate of issue #74 ?
> For those wondering how to use `--config-setting` to pass a flag, try `--config-setting="--build-option=--your_flag"`, then `--your_flag` is available in `setup.py` in `sys.argv`. > > I use this for explicit optional...
Example debug output from a failed run on my self-hosted Windows 10 runner: ``` Run actions/setup-python@v4 with: python-version: 3.7 token: *** ##[debug]Python is expected to be installed into RUNNER_TOOL_CACHE==C:\actions-runner\_work\_tool ##[debug]Semantic...
In case it helps, here's the relevant section of my workflow: ``` jobs: build: runs-on: self-hosted strategy: matrix: python-version: ["3.7", "3.8"] steps: - uses: actions/checkout@v3 - name: Set up Python...
Thanks @dusan-trickovic! BTW I also came across more help docs [here](https://docs.github.com/en/[email protected]/admin/github-actions/advanced-configuration-and-troubleshooting/troubleshooting-github-actions-for-your-enterprise#configuring-self-hosted-runners-when-using-a-self-signed-certificate-for-github-enterprise-server), but I don't even know if our GHES server _is_ using a self-signed certificate, much less where to get...
I was able to get a bit further today by doing this: 1) I downloaded a corporate .crt certifcate file (possibly a self-signed certificate?) someone in my company pointed me...
Note when I registered the runner on my laptop I did run PowerShell with admin permissions. And I chose these options during the registration process: ``` Would you like to...
After googling https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.3 and other sites I ran this in a PowerShell terminal with admin privileges to try to fix the "running scripts is disabled on this system" error: ```...
Without making any changes, if I run my workflow again it seems Python 3.8 is 'winning the race' and it fails with more info than the Python 3.7 job above......