Skip to content

Compile all 3 versions #4

Compile all 3 versions

Compile all 3 versions #4

Workflow file for this run

name: ATtiny85APU assembly
on: [push]
jobs:
build_t85:
runs-on: ubuntu-latest
name: Assemble the firmware for the ATtiny85
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache avra
uses: ./.github/actions/cache_avra
- name: Set path
run: |
echo "${{ github.workspace }}/opt/avra/bin" >> $GITHUB_PATH
- name: Build the firmware
run: make
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: main.hex
path: bin/avr/main.hex
build_t45:
runs-on: ubuntu-latest
name: Assemble the firmware for the ATtiny45
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache avra
uses: ./.github/actions/cache_avra
- name: Set path
run: |
echo "${{ github.workspace }}/opt/avra/bin" >> $GITHUB_PATH
- name: Build the firmware
run: make ATTINY=45
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: main.hex
path: bin/avr/main.hex
build_t25:
runs-on: ubuntu-latest
name: Assemble the firmware for the ATtiny25
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache avra
uses: ./.github/actions/cache_avra
- name: Set path
run: |
echo "${{ github.workspace }}/opt/avra/bin" >> $GITHUB_PATH
- name: Build the firmware
run: make ATTINY=25
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: main.hex
path: bin/avr/main.hex