Skip to content

Commit

Permalink
Fixed workflow order
Browse files Browse the repository at this point in the history
  • Loading branch information
Princess-of-Sleeping committed Oct 10, 2023
1 parent 1d0972a commit 5fa469c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ jobs:
export INCLUDE_DIR=$TRAVIS_BUILD_DIR/include
ls ./db | xargs -I__name__ vita-nid-check -dbdirver=./db/__name__ -dbg=trace
# Make sure headers are valid
find $INCLUDE_DIR -type f -name "*.h" | xargs -I FN -n 1 -P 4 arm-vita-eabi-gcc -I$INCLUDE_DIR -fsyntax-only -c FN -o /dev/null
find $INCLUDE_DIR -type f -name "*.h" | xargs -I FN -n 1 -P 4 arm-vita-eabi-g++ -I$INCLUDE_DIR -fsyntax-only -c FN -o /dev/null
#bash $TRAVIS_BUILD_DIR/.travis.d/download_external_libs.sh
# bash $TRAVIS_BUILD_DIR/.travis.d/download_external_libs.sh
cd $VITASDK/arm-vita-eabi/include
rm -rf psp2 psp2common psp2kern vitasdk vitasdk.h vitasdkkern.h
cd $TRAVIS_BUILD_DIR
find $INCLUDE_DIR -type f -name "*.h" | xargs -I FN -n 1 -P 4 arm-vita-eabi-gcc -I$INCLUDE_DIR -fsyntax-only -c FN -o /dev/null
find $INCLUDE_DIR -type f -name "*.h" | xargs -I FN -n 1 -P 4 arm-vita-eabi-g++ -I$INCLUDE_DIR -fsyntax-only -c FN -o /dev/null
cd $VITASDK/arm-vita-eabi/lib
rm -rf *_stub.a
cd $TRAVIS_BUILD_DIR
Expand Down

0 comments on commit 5fa469c

Please sign in to comment.