jondy is testing Pyarmor #4
This file contains hidden or 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
name: pyarmor-smoke-test | |
run-name: ${{ github.actor }} is testing Pyarmor | |
on: | |
push | |
# create | |
jobs: | |
test-free-threading: | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo add-apt-repository ppa:deadsnakes | |
- run: sudo apt-get update | |
- run: sudo apt-get install python3.13-nogil | |
- run: python3.13t -h | |
# - run: wget https://pyarmor.dashingsoft.com/downloads/temp/pyarmor-smoke-test.tar.gz | |
# - run: tar xzf pyarmor-smoke-test.tar.gz | |
# - run: pip install test/pyarmor.cli.core.tar.gz | |
# - run: pip install test/pyarmor.cli.tar.gz | |
# - run: pip install test/pyarmor.mini.tar.gz | |
# - run: pyarmor init test/foo.py | |
# - run: pyarmor build --mini | |
# - run: python3 dist/foo.py | |
test-free-threading-macos: | |
runs-on: macos-13 | |
steps: | |
- run: brew install python-freethreading | |
- run: $(brew --prefix)/bin/python3.13t -h |