Sha256: cf50e815bf12ce7c5b000323e09e3e6585889114f14c8d2b9d36ab4aef6ca9f6
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
name: Build / AVR on: workflow_dispatch: pull_request: paths: - 'src/**' - '.github/workflows/build_avr.yml' push: paths: - 'src/**' - '.github/workflows/build_avr.yml' jobs: avr-uno: name: avr ${{ matrix.sketches.name }} runs-on: ubuntu-latest strategy: matrix: sketches: - name: serial - name: ethernet - name: wifi board: - fqbn: arduino:avr:uno denko-target: mega platforms: | - name: arduino:avr libraries: | - name: Servo - name: LiquidCrystal - name: IRremote version: 4.0.0 - name: Ethernet - name: WiFi - name: Adafruit NeoPixel steps: - name: Checkout uses: actions/checkout@v3 with: submodules: true - name: Generate id: generate run: echo "path=$(./bin/denko sketch ${{ matrix.sketches.name }} --target ${{ matrix.board.denko-target }})" >> $GITHUB_OUTPUT - name: Compile Arduino Sketches uses: arduino/compile-sketches@v1.0.1 with: platforms: ${{ matrix.board.platforms }} fqbn: ${{ matrix.board.fqbn }} libraries: ${{ matrix.board.libraries }} sketch-paths: | - ${{ steps.generate.outputs.path }}
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
denko-0.13.1 | .github/workflows/build_avr.yml |
denko-0.13.0 | .github/workflows/build_avr.yml |