Replies: 7 comments
-
I found this discussion #1993 about Azure and confirmed that there is a |
Beta Was this translation helpful? Give feedback.
-
Could you share the content In the github pipeline, add one command |
Beta Was this translation helpful? Give feedback.
-
@jondy Here is the content:
|
Beta Was this translation helpful? Give feedback.
-
It seems the disk is really used. |
Beta Was this translation helpful? Give feedback.
-
Try to remove name: test-github-actions
run-name: ${{ github.actor }} is testing GitHub Actions
on: [push]
jobs:
test-no-disk:
runs-on: ubuntu-latest
steps:
- run: sudo mv /dev/disk /dev/notdisk
- run: pip install pyarmor
- run: pyarmor -h |
Beta Was this translation helpful? Give feedback.
-
This worked as a temporary workaround - after registering the CI license, can we move |
Beta Was this translation helpful? Give feedback.
-
Do not move back when pyarmor is running. |
Beta Was this translation helpful? Give feedback.
-
I am using our CI license (
pyarmor reg pyarmor-ci-XXXX.zip
) in GitHub Actions on a Ubuntu-latest runner, and have followed the instructions as outlined in the documentation, but still get the error:Why am I still receiving this error if I am using this in a CI pipeline? For now I am going to have to use our pro license, but this will probably run out of monthly uses rapidly, which is a problem.
Beta Was this translation helpful? Give feedback.
All reactions