1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-04 02:29:31 +00:00

build utilities in a seperate step

This commit is contained in:
mrdudz 2022-02-11 16:38:40 +01:00
parent 1f51a9f587
commit 118e73ddf9

View File

@ -23,9 +23,10 @@ jobs:
- name: Build the tools.
shell: bash
run: |
make -j2 bin USER_CFLAGS=-Werror
make -j2 util
run: make -j2 bin USER_CFLAGS=-Werror
- name: Build the utilities.
shell: bash
run: make -j2 util
- name: Build the platform libraries.
shell: bash
run: make -j2 lib QUIET=1