Add humanizer feature to make code sound more like a straight key. #112
Workflow file for this run
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 - AVR ATmega1284P (Release) | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| env: | |
| BUILD_TYPE: Release | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install | |
| # Install AVR GCC toolchain | |
| run : | | |
| sudo apt-get update | |
| sudo apt-get install -y avr-libc binutils-avr cmake doxygen gcc-avr graphviz make | |
| - name: Check Out | |
| # Check out latest code | |
| uses: actions/checkout@v4 | |
| - name: Configure | |
| # Configure build environment in build/ directory | |
| run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
| - name: Build | |
| # Execute the build | |
| run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | |
| - name: Upload Artifact (superkey.elf) | |
| # Upload ELF file | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: superkey.elf | |
| path: build/superkey.elf | |
| - name: Upload Artifact (superkey.elf.stripped) | |
| # Upload stripped ELF file | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: superkey.elf.stripped | |
| path: build/superkey.elf.stripped | |
| - name: Upload Artifact (superkey.ihex) | |
| # Upload IHEX file | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: superkey.ihex | |
| path: build/superkey.ihex | |
| - name: Upload Artifact (superkey.map) | |
| # Upload memory map file | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: superkey.map | |
| path: build/superkey.map | |
| - name: Upload Artifact (superkey.txt) | |
| # Upload executable text dump | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: superkey.txt | |
| path: build/superkey.txt | |