First batch of unit tests added for the lexer.py #40
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: Automatic Packaging | |
on: [push, pull_request] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-14, windows-2022] | |
python-version: [ "3.11", ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up python | |
id: setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install and configure Poetry | |
run: | | |
pip3 install -U poetry | |
poetry config virtualenvs.in-project true | |
- name: Set up cache | |
uses: actions/cache@v4 | |
id: cached-poetry-dependencies | |
with: | |
path: .venv | |
key: venv-${{ runner.os }}-${{ runner.arch }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
run: poetry install | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
- name: Package for Windows | |
run: poetry run pyinstaller --clean --noconfirm compiler.win.spec | |
if: runner.os == 'Windows' | |
- name: Package for MacOS | |
run: poetry run pyinstaller --clean --noconfirm compiler.mac.spec | |
if: runner.os == 'MacOS' | |
- name: Tar the contents of the dist folder | |
run: tar -czvf dist/p4compiler-${{ matrix.os }}-distributions.tar.gz dist/ | |
if: runner.os == 'MacOS' | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: p4compiler-${{ matrix.os }}-distributions | |
path: dist/p4compiler-${{ matrix.os }}-distributions.tar.gz | |
if: runner.os == 'MacOS' | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: p4compiler-${{ matrix.os }}-distributions | |
path: dist/* | |
if: runner.os == 'Windows' | |