Skip to content

Commit

Permalink
More CI handling
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Dec 6, 2023
1 parent c7657be commit b3cd0b5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: build
on: [push, pull_request]

env:
CACHE_VERSION_LINUX: 2
CACHE_VERSION_MACOS: 2
CACHE_VERSION_WIN64: 2
CACHE_VERSION_LINUX: 3
CACHE_VERSION_MACOS: 3
CACHE_VERSION_WIN64: 3
DEBIAN_FRONTEND: noninteractive
PAWPAW_SKIP_TESTS: 1

Expand All @@ -31,7 +31,7 @@ jobs:
- name: Set up dependencies
run: |
./src/PawPaw/.github/workflows/bootstrap-deps.sh linux-x86_64
apt-get install -yqq libqt5svg5-dev qtbase5-dev qtbase5-dev-tools unzip xdg-user-dirs
apt-get install -yqq unzip xdg-user-dirs zip
- name: Build dependencies
run: |
./src/PawPaw/bootstrap-mod.sh linux-x86_64 && ./src/PawPaw/.cleanup.sh linux-x86_64
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
- name: Set up dependencies
run: |
./src/PawPaw/.github/workflows/bootstrap-deps.sh win64
apt-get install -yqq unzip xdg-user-dirs xvfb
apt-get install -yqq unzip xdg-user-dirs xvfb zip
- name: Build dependencies
run: |
./src/PawPaw/bootstrap-mod.sh win64 && ./src/PawPaw/.cleanup.sh win64
Expand Down
2 changes: 1 addition & 1 deletion src/PawPaw
2 changes: 1 addition & 1 deletion utils/plugin-builder/plugin-builder.mk
Original file line number Diff line number Diff line change
Expand Up @@ -238,5 +238,5 @@ ifeq ($($(PKG)_SITE_METHOD),git)
tar --exclude='.git' -czf '$($(PKG)_DLFILE)' -C '$(PAWPAW_TMPDIR)' '$(PAWPAW_TMPNAME)'
rm -rf '$(PAWPAW_TMPDIR)'
else
wget -O '$($(PKG)_DLFILE)' '$($(PKG)_DLSITE)'
curl -Lo '$($(PKG)_DLFILE)' '$($(PKG)_DLSITE)'
endif

0 comments on commit b3cd0b5

Please sign in to comment.