File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments