mirror of
https://github.com/a2stuff/build-install-ca65-action.git
synced 2024-10-13 04:23:37 +00:00
11 lines
330 B
YAML
11 lines
330 B
YAML
name: 'Build and Install cc65 Assembler Components'
|
|
description: 'Builds and installs the cc65 assembler components (ca65, ld65)'
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: >
|
|
git clone https://github.com/cc65/cc65 /tmp/cc65 &&
|
|
sudo make -C /tmp/cc65 ca65 ld65 avail &&
|
|
ca65 --version
|
|
shell: bash
|