Skip to content

Commit a9feabb

Browse files
committed
GitHub Actions,cosmetic: clean up whitespaces
Signed-off-by: Masatake YAMATO <[email protected]>
1 parent e2f8cdd commit a9feabb

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/cross-compile-android-ndk-on-mac.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v2
20-
20+
2121
- run: brew install gcc make automake autoconf file
22-
22+
2323
- run: ./autogen.sh
2424

2525
- name: Run ./configure ...
@@ -36,30 +36,30 @@ jobs:
3636
TOOLCHAIN_BASE_DIR=$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/$BUILD_MACHINE_OS_TYPE-$BUILD_MACHINE_OS_ARCH
3737
TOOLCHAIN_BIN_DIR=$TOOLCHAIN_BASE_DIR/bin
3838
SYSROOT=$TOOLCHAIN_BASE_DIR/sysroot
39-
39+
4040
export CC=$TOOLCHAIN_BIN_DIR/armv7a-linux-androideabi21-clang
4141
export AR=$TOOLCHAIN_BIN_DIR/llvm-ar
4242
export RANLIB=$TOOLCHAIN_BIN_DIR/llvm-ranlib
4343
4444
export CFLAGS="--sysroot $SYSROOT -Qunused-arguments -Os -fpic"
4545
export CPPFLAGS="--sysroot $SYSROOT -Qunused-arguments"
4646
export LDFLAGS="--sysroot $SYSROOT"
47-
47+
4848
TARGET=armv7a-linux-androideabi
49-
49+
5050
COLOR_PURPLE='\033[0;35m' # Purple
5151
COLOR_GREEN='\033[0;32m' # Green
5252
COLOR_OFF='\033[0m' # Reset
53-
53+
5454
echo() {
5555
printf "%b\n" "$*"
5656
}
57-
57+
5858
run() {
5959
echo "$COLOR_PURPLE==>$COLOR_OFF $COLOR_GREEN$@$COLOR_OFF"
6060
eval "$*"
6161
}
62-
62+
6363
run ./configure \
6464
--host=$TARGET \
6565
--disable-iconv \
@@ -73,7 +73,7 @@ jobs:
7373
LDFLAGS="\"$LDFLAGS\"" \
7474
AR=$AR \
7575
RANLIB=$RANLIB
76-
76+
7777
- run: make V=1
78-
78+
7979
- run: file ctags | grep 'ELF 32-bit LSB pie executable, ARM, EABI5'

.github/workflows/cross-compile-mingw-w64-on-mac.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- uses: actions/checkout@v2
21-
21+
2222
- run: brew install mingw-w64 gcc make automake autoconf file
2323

2424
- run: ./autogen.sh
@@ -37,7 +37,7 @@ jobs:
3737
AR=${{ matrix.target }}-ar \
3838
RANLIB=${{ matrix.target }}-ranlib \
3939
WINDRES=${{ matrix.target }}-windres
40-
40+
4141
- run: make V=1
42-
42+
4343
- run: file ctags.exe | grep PE32

0 commit comments

Comments
 (0)