Skip to content

Commit 8bdc4f4

Browse files
committed
well now then maybe?
1 parent bd05b24 commit 8bdc4f4

1 file changed

Lines changed: 20 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,30 @@ jobs:
124124
run: |
125125
sudo apt-get update && sudo apt-get install curl build-essential cmake -y
126126
127-
- name: Install dependencies
127+
- name: Install SID player xa dependency
128128
if: ${{matrix.withsidplayer == 1 }}
129129
run: |
130130
sudo apt-get update && sudo apt-get install -y xa65
131131
132+
- name: Checkout bin2h source
133+
if: ${{matrix.withsidplayer == 1 }}
134+
uses: actions/checkout@v4
135+
with:
136+
repository: elnormous/bin2h
137+
path: bin2h-src
138+
139+
- name: Build and add to PATH
140+
if: ${{matrix.withsidplayer == 1 }}
141+
run: |
142+
cd bin2h-src
143+
make
144+
# Add the current directory containing the built 'bin2h' to the runner's PATH
145+
echo "$(pwd)" >> $GITHUB_PATH
146+
147+
- name: Verify installation
148+
if: ${{matrix.withsidplayer == 1 }}
149+
run: bin2h --help
150+
132151
- name: 🗒️ Check GCC Version
133152
id: compiler-version
134153
run: |

0 commit comments

Comments
 (0)