Skip to content

Commit

Permalink
Fix CI tests for 3.4 and 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mnaberez committed Nov 18, 2023
1 parent e96a6f9 commit ebf6f5d
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,76 @@ env:
PIP_DISABLE_PIP_VERSION_CHECK: 1

jobs:
build_py34:
runs-on: ubuntu-20.04
container: python:3.4
strategy:
fail-fast: false

steps:
- uses: actions/checkout@v3

- name: Show Python version
run: python -V

- name: Install dependencies
run: pip install setuptools

- name: Run the tests
run: python setup.py test -q

- name: Install it
run: python setup.py install

- name: Install asxxxx
run: |
wget --no-verbose --content-disposition https://github.com/6502org/6502.org/raw/74f5d0c0f9b73d5e353bde7b3b25ea7f43b527a1/public/tools/asm/asxs5p50.zip
unzip -q asxs5p50.zip
make -C asxv5pxx/asxmak/linux/build all
echo "$PWD/asxv5pxx/asxmak/linux/build" >> $GITHUB_PATH
- name: Install srecord
run: sudo apt-get install -y srecord

- name: Disassemble and reassemble the test program
run: |
make -C k0dasm/tests/end_to_end all
build_py35:
runs-on: ubuntu-20.04
container: python:3.5
strategy:
fail-fast: false

steps:
- uses: actions/checkout@v3

- name: Show Python version
run: python -V

- name: Install dependencies
run: pip install setuptools

- name: Run the tests
run: python setup.py test -q

- name: Install it
run: python setup.py install

- name: Install asxxxx
run: |
wget --no-verbose --content-disposition https://github.com/6502org/6502.org/raw/74f5d0c0f9b73d5e353bde7b3b25ea7f43b527a1/public/tools/asm/asxs5p50.zip
unzip -q asxs5p50.zip
make -C asxv5pxx/asxmak/linux/build all
echo "$PWD/asxv5pxx/asxmak/linux/build" >> $GITHUB_PATH
- name: Install srecord
run: sudo apt-get install -y srecord

- name: Disassemble and reassemble the test program
run: |
make -C k0dasm/tests/end_to_end all
build:
runs-on: ubuntu-20.04
strategy:
Expand Down

0 comments on commit ebf6f5d

Please sign in to comment.