From b9c6fe888909e6caab7a4a18330e6cc3f736a929 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Tue, 31 May 2022 07:32:30 +0200 Subject: [PATCH] deforaos-c-ci_ubuntu-latest.yml: actually build for i386 --- .github/workflows/deforaos-c-ci_ubuntu-latest.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deforaos-c-ci_ubuntu-latest.yml b/.github/workflows/deforaos-c-ci_ubuntu-latest.yml index d9004a3..b9ca66f 100644 --- a/.github/workflows/deforaos-c-ci_ubuntu-latest.yml +++ b/.github/workflows/deforaos-c-ci_ubuntu-latest.yml @@ -23,9 +23,9 @@ jobs: run: git clone https://github.com/DeforaOS/configure.git configure && (cd configure/src && PKG_CONFIG_PATH="$HOME/opt/DeforaOS/lib/pkgconfig" make PREFIX="$HOME/opt/DeforaOS" install) - name: configure run: $HOME/opt/DeforaOS/bin/configure -p "$HOME/opt/DeforaOS" -M i386-debug - - name: make ARCH="i386" - run: PKG_CONFIG_PATH="$HOME/opt/DeforaOS/lib/pkgconfig" make CCSHARED="cc -shared" - - name: make ARCH="i386" tests - run: PKG_CONFIG_PATH="$HOME/opt/DeforaOS/lib/pkgconfig" make CCSHARED="cc -shared" tests - - name: make ARCH="i386" distcheck - run: PKG_CONFIG_PATH="$HOME/opt/DeforaOS/lib/pkgconfig" make CCSHARED="cc -shared" distcheck + - name: make (i386) + run: PKG_CONFIG_PATH="$HOME/opt/DeforaOS/lib/pkgconfig" make ARCH="i386" CCSHARED="cc -shared" + - name: make tests (i386) + run: PKG_CONFIG_PATH="$HOME/opt/DeforaOS/lib/pkgconfig" make ARCH="i386" CCSHARED="cc -shared" tests + - name: make distcheck (i386) + run: PKG_CONFIG_PATH="$HOME/opt/DeforaOS/lib/pkgconfig" make ARCH="i386" CCSHARED="cc -shared" distcheck