mirror of
https://github.com/mi57730/a2d.git
synced 2024-11-25 10:30:50 +00:00
15 lines
323 B
YAML
15 lines
323 B
YAML
sudo: enabled
|
|
os: osx
|
|
language: c
|
|
|
|
install:
|
|
- git clone https://github.com/cc65/cc65 /tmp/cc65 &&
|
|
make -C /tmp/cc65 bin apple2 apple2enh &&
|
|
/tmp/cc65/bin/cc65 --version
|
|
|
|
script:
|
|
- cd desktop &&
|
|
MAKE_FLAGS="CC65=/tmp/cc65/bin" res/go.sh &&
|
|
cd ../desk.acc &&
|
|
MAKE_FLAGS="CC65=/tmp/cc65/bin" res/go.sh
|