use logfile variable for file_handler in AdibouNet #488
This file contains hidden or 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 and Release (Linux) | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install g++ | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y g++ make build-essential | |
- name: Run configure | |
run: ./configure | |
- name: Compile all C++ programs | |
run: make | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: compiled-linux | |
path: | | |
binaries/LoaderMDO/LoaderMDO | |
binaries/BCD1Creator/BCD1Creator | |
binaries/DEV7Launcher/DEV7Launcher | |
binaries/ModelPathDumper/ModelPathDumper | |
binaries/OBJDumper/OBJDumper | |
binaries/OBCViewer/OBCViewer | |
binaries/CTRKViewer/CTRKViewer | |
binaries/PLAViewer/PLAViewer |