From 4bc8f9c487f327e66ee5faf3360182713ee0a40d Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Thu, 2 Mar 2023 19:48:02 -0800 Subject: [PATCH] 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. --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 89a38a4..2f63cf2 100644 --- a/action.yml +++ b/action.yml @@ -5,6 +5,8 @@ runs: steps: - run: > git clone https://github.com/cc65/cc65 /tmp/cc65 && - sudo make -C /tmp/cc65 ca65 ld65 avail && + sudo make -C /tmp/cc65 ca65 ld65 && + sudo ln -s /tmp/cc65/bin/ca65 /usr/local/bin/ca65 && + sudo ln -s /tmp/cc65/bin/ld65 /usr/local/bin/ld65 && ca65 --version shell: bash