Build and install the assembler components of cc65
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Joshua Bell 4bc8f9c487 Drop use of 'make avail' following https://github.com/cc65/cc65/pull/1994
cc65's 'make avail' now fails unless all targets were built.
Create links explicitly for ca65/ld65 only.
3 weeks ago
LICENSE Initial commit 2 years ago
README.md Update README.md 2 years ago
action.yml Drop use of 'make avail' following https://github.com/cc65/cc65/pull/1994 3 weeks ago

README.md

Build & Install ca65 Action

This action will build and install the cc65 assembler components (ca65, ld65).

  • The tip-of-tree version from https://github.com/cc65/cc65 is used.
  • Targets are built and installed, so later steps can use the ca65 and ld65 commands directly.

The action has no inputs or outputs.

Example

name: build

on:
  push:
    branches: [ main ]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: a2stuff/build-install-ca65-action@v1
      - name: build
        run: |
          ca65 -o example.o example.s
          ld65 --config example.cfg -o example example.o