mac staging area

This commit is contained in:
Christopher A. Mosher 2022-11-02 17:35:54 -04:00
parent e6a364a72a
commit 10bdaa86cd
1 changed files with 25 additions and 0 deletions

View File

@ -53,6 +53,7 @@ jobs:
id: "epple2-roms"
with:
name: "epple2-roms"
path: "epple2-roms"
- name: "Stage"
run: |
@ -93,6 +94,30 @@ jobs:
cmake ..
cmake --build .
- uses: "actions/download-artifact@v3"
id: "epple2-roms"
with:
name: "epple2-roms"
path: "epple2-roms"
- name: "Stage"
run: |
set -x
pwd
cd build
mkdir -p stage/usr/local/bin
mkdir -p stage/usr/local/etc/epple2
mkdir -p stage/usr/local/lib/epple2/system
mkdir -p stage/usr/local/lib/epple2/cards
cp src/epple2* stage/usr/local/bin/
cp conf/*.conf stage/usr/local/etc/epple2/
cp ${{steps.epple2-roms.outputs.download-path}}/epple2sys.a65 stage/usr/local/lib/epple2/system/
cp ${{steps.epple2-roms.outputs.download-path}}/stdout.a65 stage/usr/local/lib/epple2/cards/
cp ${{steps.epple2-roms.outputs.download-path}}/stdin.a65 stage/usr/local/lib/epple2/cards/
cp ${{steps.epple2-roms.outputs.download-path}}/clock.a65 stage/usr/local/lib/epple2/cards/
cd -
tree
"build-epple2-windows":