Version bump to 1.3.2. #72
This file contains 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: Test build and run tests | |
on: | |
push: | |
branches: [ legacy, legacy-dev ] | |
pull_request: | |
branches: [ legacy, legacy-dev ] | |
jobs: | |
tests-py2: | |
name: Runs tests that require python 2 | |
runs-on: ubuntu-latest | |
container: | |
image: python:2.7.18-buster | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
# - name: Set up Python 2.7 | |
# uses: actions/setup-python@v2 | |
# with: | |
# python-version: "2.7" | |
- name: Test by decompiling a script and building un.rpyc | |
run: | | |
echo "Testing the command line tool" | |
./unrpyc.py --clobber --init-offset "testcases/compiled/**/*.rpyc" | |
diff -ur testcases/expected testcases/compiled -x "*.rpyc" | |
echo "Compiling un.rpyc" | |
cd un.rpyc; | |
./compile.py -p 1 | |
cd .. | |
# test all the different iterations of it | |
echo "Testing un.rpyc" | |
./testcases/test_un_rpyc.py --unrpyc un.rpyc/un.rpyc "testcases/compiled/**/*.rpyc" | |
diff -ur testcases/expected testcases/compiled -x "*.rpyc" | |
echo "Testing bytecode.rpyb" | |
./testcases/test_un_rpyc.py --unrpyb un.rpyc/bytecode.rpyb "testcases/compiled/**/*.rpyc" | |
diff -ur testcases/expected testcases/compiled -x "*.rpyc" | |
echo "Testing un.rpy" | |
./testcases/test_un_rpyc.py --unrpy un.rpyc/un.rpy "testcases/compiled/**/*.rpyc" | |
diff -ur testcases/expected testcases/compiled -x "*.rpyc" |