non_regression: even more versions of gcc #43
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: Non-regression testing | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
os-python: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-20.04", "ubuntu-latest", "macos-latest"] | |
python-version: ["3.10", "pypy2.7", "pypy3.9"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install pytest pyparsing coverage codecov | |
git clone https://github.com/LRGH/elfesteem | |
git clone https://github.com/LRGH/miasmX | |
git clone https://github.com/LRGH/crysp | |
git clone https://github.com/LRGH/amoco | |
echo > amoco/amoco/__init__.py # don't import grandalf | |
cat plasmasm/python/amoco-config.py > amoco/amoco/config.py # avoid dependency on traitlets | |
mv elfesteem miasmX amoco crysp .. | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
echo '** Simple tests to verify that dependencies are working' | |
python tools/disass.py -c /MIASM non_regression/basic_x86_linux.intel.s | |
python tools/disass.py -c /MIASM non_regression/basic_x86_linux.att.s | |
python tools/disass.py -c /MIASM non_regression/basic_x86_linux.o | |
python tools/disass.py -c /AMOCO non_regression/basic_x86_linux.att.s | |
python tools/disass.py -c /AMOCO non_regression/basic_x86_linux.o | |
- name: Unit tests asm_basic (without using pytest module) | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
python non_regression/run_tests.py test_asm_basic | |
- name: Unit tests errors | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
coverage run -a -m pytest --durations=10 non_regression/test_errors.py | |
- name: Unit tests asm_basic | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
coverage run -a -m pytest --durations=10 non_regression/test_asm_basic.py | |
- name: Unit tests asm_macosx | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
coverage run -a -m pytest --durations=10 non_regression/test_asm_macosx.py | |
- name: Unit tests asm_switch | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
coverage run -a -m pytest --durations=10 non_regression/test_asm_switch.py | |
- name: Unit tests asm_other | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
coverage run -a -m pytest --durations=10 non_regression/test_asm_other.py | |
- name: Unit tests bin | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
coverage run -a -m pytest --durations=10 non_regression/test_bin.py | |
- name: Unit tests display | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
coverage run -a -m pytest --durations=10 non_regression/test_display.py | |
- name: Unit tests lineapi | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
coverage run -a -m pytest --durations=10 non_regression/test_lineapi.py | |
- name: Unit tests objdump | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
coverage run -a -m pytest --durations=10 non_regression/test_objdump.py | |
- name: Global tests asm_fullsoftware | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
coverage run -a -m pytest --durations=10 non_regression/test_asm_fullsoftware.py | |
- name: Update codecov | |
run: | | |
codecov | |
python23: | |
runs-on: "ubuntu-latest" | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 2.3 | |
run: | | |
cd .. | |
curl -O https://www.python.org/ftp/python/2.3.7/Python-2.3.7.tgz | |
tar xzf Python-2.3.7.tgz | |
cd Python-2.3.7 | |
# We need to disable FORTIFY_SOURCE to compile python 2.3 | |
# cf. https://bugs.launchpad.net/ubuntu/+source/gcc-defaults/+bug/286334 | |
./configure BASECFLAGS=-U_FORTIFY_SOURCE | |
make | |
export PATH=$(pwd):$PATH | |
cd ../plasmasm | |
python -c 'import sys;print(sys.version)' | |
- name: Install dependencies | |
run: | | |
git clone https://github.com/LRGH/elfesteem | |
git clone https://github.com/LRGH/miasmX | |
git clone https://github.com/LRGH/crysp | |
git clone https://github.com/LRGH/amoco | |
echo > amoco/amoco/__init__.py # don't import grandalf | |
cat plasmasm/python/amoco-config.py > amoco/amoco/config.py # avoid dependency on traitlets | |
mv elfesteem miasmX amoco crysp .. | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
echo '** Simple tests to verify that dependencies are working' | |
# NB: amoco is not compatible with python2.3 | |
python tools/disass.py -c /MIASM non_regression/basic_x86_linux.intel.s | |
python tools/disass.py -c /MIASM non_regression/basic_x86_linux.att.s | |
python tools/disass.py -c /MIASM non_regression/basic_x86_linux.o | |
- name: Unit tests errors (pytest is not compatible with python2.3) | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
true # python non_regression/run_tests.py test_errors | |
- name: Unit tests asm_basic | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
python non_regression/run_tests.py test_asm_basic | |
- name: Unit tests asm_macosx | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
python non_regression/run_tests.py test_asm_macosx | |
- name: Unit tests asm_switch | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
python non_regression/run_tests.py test_asm_switch | |
- name: Unit tests asm_other | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
python non_regression/run_tests.py test_asm_other | |
- name: Unit tests bin | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
python non_regression/run_tests.py test_bin | |
- name: Unit tests display | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
python non_regression/run_tests.py test_display | |
- name: Unit tests lineapi | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
true # python non_regression/run_tests.py test_lineapi | |
- name: Unit tests objdump | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
python non_regression/run_tests.py test_objdump | |
- name: Global tests asm_fullsoftware | |
run: | | |
export PYTHONPATH=../elfesteem:../miasmX:../amoco:../crysp | |
python non_regression/run_tests.py test_asm_fullsoftware | |
gcc: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04] | |
gcc-version: [4.8, 5, 6, 7, 8, 9, 10, 11, 12, 13] | |
exclude: | |
- {os: ubuntu-20.04, gcc-version: 4.8} | |
- {os: ubuntu-20.04, gcc-version: 5} | |
- {os: ubuntu-20.04, gcc-version: 6} | |
- {os: ubuntu-20.04, gcc-version: 7} | |
- {os: ubuntu-22.04, gcc-version: 8} | |
- {os: ubuntu-20.04, gcc-version: 9} | |
- {os: ubuntu-20.04, gcc-version: 10} | |
- {os: ubuntu-20.04, gcc-version: 11} | |
- {os: ubuntu-20.04, gcc-version: 12} | |
- {os: ubuntu-20.04, gcc-version: 13} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Set up GCC ${{ matrix.gcc-version }} | |
uses: LRGH/setup-gcc@v1 | |
with: | |
version: ${{ matrix.gcc-version }} | |
platform: x64 | |
- name: Install dependencies | |
run: | | |
python -m pip install pytest pyparsing coverage codecov | |
git clone https://github.com/LRGH/elfesteem | |
git clone https://github.com/LRGH/miasmX | |
git clone https://github.com/LRGH/crysp | |
git clone https://github.com/LRGH/amoco | |
echo > amoco/amoco/__init__.py # don't import grandalf | |
cat plasmasm/python/amoco-config.py > amoco/amoco/config.py # avoid dependency on traitlets | |
mv elfesteem miasmX amoco crysp .. | |
export PYTHONPATH=../elfesteem:../miasmx:../amoco:../crysp | |
echo '** Simple tests to verify that dependencies are working' | |
python tools/disass.py -c /MIASM non_regression/basic_x86_linux.intel.s || true | |
python tools/disass.py -c /MIASM non_regression/basic_x86_linux.att.s || true | |
python tools/disass.py -c /MIASM non_regression/basic_x86_linux.o || true | |
python tools/disass.py -c /AMOCO non_regression/basic_x86_linux.att.s || true | |
python tools/disass.py -c /AMOCO non_regression/basic_x86_linux.o || true | |
- name: Testing compile.py with a minimal program | |
run: | | |
export PATH=$(pwd)/tools:$PATH | |
echo 'int main() { return 10; }' > a.c | |
compile.py -parse_asm gcc a.c | |
compile.py -parse_asm -rw -dead gcc a.c | |
compile.py -parse_obj gcc a.c | |
compile.py -change gcc a.c | |
- name: Testing compile.py with zlib | |
run: | | |
export PATH=$(pwd)/tools:$PATH | |
curl -O https://zlib.net/fossils/zlib-1.2.8.tar.gz | |
tar xzf zlib-1.2.8.tar.gz | |
cd zlib-1.2.8 | |
./configure | |
make clean; make test CC='compile.py -parse_asm gcc' | |
make clean; make test CC='compile.py -parse_asm -rw -dead gcc' | |
make clean; make test CC='compile.py -parse_obj gcc' | |
make clean; make test CC='compile.py -change gcc' |