Build sb binary #4
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: Build sb binary | |
on: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: Check-out repository | |
uses: actions/checkout@v4 | |
- name: Setup venv | |
run: mkdir build | |
- name: Setup venv | |
run: cd build && python3.10 -m venv venv | |
- name: Install Dependencies | |
run: cd build && ./venv/bin/pip install PyYAML nuitka | |
- name: List Pip modules | |
run: cd build && ./venv/bin/pip list | |
- name: Compile binary | |
run: cd build && ./venv/bin/python -m nuitka ../sb.py --onefile -o sb | |
- name: Copy binary and purge build directory | |
run: cp ./build/sb sb && rm -rf ./build | |
- name: List Directory Contents | |
run: ls -la | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: Continuous Integration | |
author_email: username@users.noreply.github.com | |
message: 'Continuous Integration Updated Binary' | |
add: 'sb' |