Skip to content

Commit

Permalink
.github/workflows/config.yml: debian-unstable: force make -j1, set fa…
Browse files Browse the repository at this point in the history
…il-fast: false
  • Loading branch information
k-okada committed Feb 7, 2025
1 parent bbf3704 commit a5b1037
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ jobs:
- DOCKER_IMAGE: riscv64/debian:unstable-slim
DOCKER_PLATFORM: riscv64
ARCH: Linux
fail-fast: false

runs-on: ubuntu-latest
timeout-minutes: 60
Expand All @@ -170,10 +171,10 @@ jobs:
set -x; set -e; \
apt update -qq; \
apt install -y -qq make gcc libgl-dev libglu1-mesa-dev libjpeg-dev libpng-dev libpq-dev libx11-dev libxext-dev; \
CFLAGS='-Werror=implicit-function-declaration' ARCH=$ARCH EUSDIR=/ws/euslisp make -C /ws/euslisp/lisp/ -f Makefile.$ARCH eus0; \
CC='gcc -Werror' ARCHDIR=$ARCH EUSDIR=/ws/euslisp make -C /ws/euslisp/lisp/image/jpeg; \
CFLAGS='-Werror=implicit-function-declaration' ARCH=$ARCH EUSDIR=/ws/euslisp make -j1 -C /ws/euslisp/lisp/ -f Makefile.$ARCH eus0; \
CC='gcc -Werror' ARCHDIR=$ARCH EUSDIR=/ws/euslisp make -j1 -C /ws/euslisp/lisp/image/jpeg; \
if [[ "$DOCKER_IMAGE" == *"arm"* ]]; then exit 0; fi ; \
CFLAGS='-Werror=implicit-function-declaration' ARCH=$ARCH EUSDIR=/ws/euslisp make -C /ws/euslisp/lisp/ -f Makefile.$ARCH eus0 eus1 eus2 eusg eusx eusgl; \
CFLAGS='-Werror=implicit-function-declaration' ARCH=$ARCH EUSDIR=/ws/euslisp make -j1 -C /ws/euslisp/lisp/ -f Makefile.$ARCH eus0 eus1 eus2 eusg eusx eusgl; \
apt install -y -qq curl dpkg-dev; \
curl -sLo /usr/local/bin/shunit2 https://raw.githubusercontent.com/kward/shunit2/master/shunit2; \
chmod +x /usr/local/bin/shunit2 ; \
Expand Down

0 comments on commit a5b1037

Please sign in to comment.