pass QUIET in the workflows
This commit is contained in:
14
.github/workflows/build-on-pull-request.yml
vendored
14
.github/workflows/build-on-pull-request.yml
vendored
@@ -29,13 +29,13 @@ jobs:
|
|||||||
run: make -j2 sorted
|
run: make -j2 sorted
|
||||||
- name: Build the tools.
|
- name: Build the tools.
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make -j2 bin USER_CFLAGS=-Werror
|
run: make -j2 bin USER_CFLAGS=-Werror QUIET=1
|
||||||
- name: Build the dbginfo example
|
- name: Build the dbginfo example
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make -j2 -C src test
|
run: make -j2 -C src test QUIET=1
|
||||||
- name: Build the utilities.
|
- name: Build the utilities.
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make -j2 util
|
run: make -j2 util QUIET=1
|
||||||
- name: Build the platform libraries.
|
- name: Build the platform libraries.
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make -j2 lib QUIET=1
|
run: make -j2 lib QUIET=1
|
||||||
@@ -46,12 +46,12 @@ jobs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
run: make -j2 test QUIET=1
|
run: make -j2 test QUIET=1
|
||||||
- name: Test that the samples can be built.
|
- name: Test that the samples can be built.
|
||||||
run: make -C samples platforms
|
run: make -C samples platforms QUIET=1
|
||||||
- name: Test that the targettest programs can be built.
|
- name: Test that the targettest programs can be built.
|
||||||
run: make -C targettest platforms
|
run: make -C targettest platforms QUIET=1
|
||||||
- name: Build the document files.
|
- name: Build the document files.
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make -j2 doc
|
run: make -j2 doc QUIET=1
|
||||||
- name: Upload a documents snapshot.
|
- name: Upload a documents snapshot.
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
@@ -90,7 +90,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Build utils (MinGW)
|
- name: Build utils (MinGW)
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: make -j2 util SHELL=cmd
|
run: make -j2 util QUIET=1 SHELL=cmd
|
||||||
|
|
||||||
- name: Build the platform libraries (make lib)
|
- name: Build the platform libraries (make lib)
|
||||||
shell: cmd
|
shell: cmd
|
||||||
|
|||||||
18
.github/workflows/snapshot-on-push-master.yml
vendored
18
.github/workflows/snapshot-on-push-master.yml
vendored
@@ -55,8 +55,8 @@ jobs:
|
|||||||
- name: Build the tools.
|
- name: Build the tools.
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
make -j2 bin USER_CFLAGS=-Werror
|
make -j2 bin USER_CFLAGS=-Werror QUIET=1
|
||||||
make -j2 util
|
make -j2 util QUIET=1
|
||||||
- name: Build the platform libraries.
|
- name: Build the platform libraries.
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make -j2 lib QUIET=1
|
run: make -j2 lib QUIET=1
|
||||||
@@ -65,26 +65,26 @@ jobs:
|
|||||||
run: make -j2 test QUIET=1
|
run: make -j2 test QUIET=1
|
||||||
- name: Test that the samples can be built.
|
- name: Test that the samples can be built.
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make -j2 samples
|
run: make -j2 samples QUIET=1
|
||||||
- name: Remove the output from the samples tests.
|
- name: Remove the output from the samples tests.
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make -C samples clean
|
run: make -C samples clean QUIET=1
|
||||||
- name: Remove programs in util directory
|
- name: Remove programs in util directory
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make -C util clean
|
run: make -C util clean QUIET=1
|
||||||
- name: Build the document files.
|
- name: Build the document files.
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make -j2 doc
|
run: make -j2 doc QUIET=1
|
||||||
- name: Build and package 64-bit Windows versions of the tools.
|
- name: Build and package 64-bit Windows versions of the tools.
|
||||||
run: |
|
run: |
|
||||||
make -C src clean
|
make -C src clean QUIET=1
|
||||||
make -j2 bin USER_CFLAGS=-Werror CROSS_COMPILE=x86_64-w64-mingw32-
|
make -j2 bin USER_CFLAGS=-Werror CROSS_COMPILE=x86_64-w64-mingw32-
|
||||||
make zip
|
make zip
|
||||||
mv cc65.zip cc65-snapshot-win64.zip
|
mv cc65.zip cc65-snapshot-win64.zip
|
||||||
- name: Build and package 32-bit Windows versions of the tools.
|
- name: Build and package 32-bit Windows versions of the tools.
|
||||||
run: |
|
run: |
|
||||||
make -C src clean
|
make -C src clean QUIET=1
|
||||||
make -j2 bin USER_CFLAGS=-Werror CROSS_COMPILE=i686-w64-mingw32-
|
make -j2 bin USER_CFLAGS=-Werror QUIET=1 CROSS_COMPILE=i686-w64-mingw32-
|
||||||
make zip
|
make zip
|
||||||
mv cc65.zip cc65-snapshot-win32.zip
|
mv cc65.zip cc65-snapshot-win32.zip
|
||||||
|
|
||||||
|
|||||||
8
.github/workflows/windows-test-scheduled.yml
vendored
8
.github/workflows/windows-test-scheduled.yml
vendored
@@ -60,19 +60,19 @@ jobs:
|
|||||||
- name: Build utils (MinGW)
|
- name: Build utils (MinGW)
|
||||||
if: steps.check-sha.outputs.cache-hit != 'true'
|
if: steps.check-sha.outputs.cache-hit != 'true'
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: make -j2 util SHELL=cmd
|
run: make -j2 util SHELL=cmd QUIET=1
|
||||||
|
|
||||||
- name: Build the platform libraries (make lib)
|
- name: Build the platform libraries (make lib)
|
||||||
if: steps.check-sha.outputs.cache-hit != 'true'
|
if: steps.check-sha.outputs.cache-hit != 'true'
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: make -j2 lib QUIET=1 SHELL=cmd
|
run: make -j2 lib QUIET=1 SHELL=cmd QUIET=1
|
||||||
|
|
||||||
- name: Run the regression tests (make test)
|
- name: Run the regression tests (make test)
|
||||||
if: steps.check-sha.outputs.cache-hit != 'true'
|
if: steps.check-sha.outputs.cache-hit != 'true'
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: make -j2 test QUIET=1 SHELL=cmd
|
run: make -j2 test QUIET=1 SHELL=cmd QUIET=1
|
||||||
|
|
||||||
- name: Test that the samples can be built (make samples)
|
- name: Test that the samples can be built (make samples)
|
||||||
if: steps.check-sha.outputs.cache-hit != 'true'
|
if: steps.check-sha.outputs.cache-hit != 'true'
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: make -j2 samples SHELL=cmd
|
run: make -j2 samples SHELL=cmd QUIET=1
|
||||||
|
|||||||
Reference in New Issue
Block a user