Skip to content

Commit

Permalink
Merge branch 'parallel-mkassets'
Browse files Browse the repository at this point in the history
* Branch commit log:
  misc/mkassets.sh: run checks and UI tests
  misc/Makefile.mk: pass jobserver to mkassets
  .github/workflows/testing.yml: skip IRC job if nektos/act set env.ACT
  doc/poxy.sh: test $GITHUB_ACTIONS for CI setup

Signed-off-by: Tim Janik <[email protected]>
  • Loading branch information
tim-janik committed Jun 27, 2024
2 parents 11bfbe7 + a834303 commit fbbecd1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ jobs:
make branch-check BRANCH_CHECK_EXIT=$BRANCH_CHECK_EXIT
Ping-IRC:
if: ${{ always() }}
needs: [FocalAssets, UploadDocs, ArchReplay, FocalClangTidy]
if: ${{ always() && !env.ACT }}
runs-on: ubuntu-latest
steps:
- { uses: actions/[email protected], with: { fetch-depth: 0 } } # Fix actions/checkout#290
Expand Down
2 changes: 1 addition & 1 deletion doc/poxy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ $UPLOAD && {
rm -rf poxy/iodocs/
(
# Support for CI uploads
test -z "`git config user.email`" && {
test -n "$GITHUB_ACTIONS" && {
export GIT_AUTHOR_EMAIL="[email protected]" GIT_AUTHOR_NAME="Anklang CI Action" # "github.com/tim-janik/anklang/actions/"
export GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL" GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
GIT_SSH_COMMAND="ssh -o BatchMode=yes -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
Expand Down
2 changes: 1 addition & 1 deletion misc/Makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,6 @@ CLEANDIRS += $>/appimagetools/
# == mkassets ==
# Let misc/mkassets.sh do the work, just pre-cache needed downloads
mkassets: $>/appimagetools/appimage-runtime-zstd
$Q exec misc/mkassets.sh
+$Q exec misc/mkassets.sh
.PHONY: mkassets
CLEANDIRS += $>/mkdeb/
5 changes: 2 additions & 3 deletions misc/mkassets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@ __EOF
( cd $BUILDDIR/
# Note, ase/ special cases MODE=production INSN=sse as non march=native release builds
make -w V=${V:-} default MODE=production INSN=sse
make -w V=${V:-} -j`nproc` \
all assets/pdf
make -w V=${V:-} check
make -w V=${V:-} all assets/pdf
make -w V=${V:-} check x11test-v
misc/mkdeb.sh
misc/mkAppImage.sh
)
Expand Down

0 comments on commit fbbecd1

Please sign in to comment.