Browse Source

Clear CI cache for fresh builds

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.9.22
falkTX 3 years ago
parent
commit
30bde7653e
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      .github/workflows/build.yml

+ 7
- 7
.github/workflows/build.yml View File

@@ -8,10 +8,10 @@ on:
branches: branches:
- '*' - '*'
env: env:
CACHE_VERSION: 5
CACHE_VERSION: 6
DEBIAN_FRONTEND: noninteractive DEBIAN_FRONTEND: noninteractive
HOMEBREW_NO_AUTO_UPDATE: 1 HOMEBREW_NO_AUTO_UPDATE: 1
PAWPAW_VERSION: 023bccdeffafc4212292072a1eba78d9e709510e
PAWPAW_VERSION: 86d947d472e1478af882175ee329a6f769b4d15c
PAWPAW_SKIP_LTO: 1 PAWPAW_SKIP_LTO: 1


jobs: jobs:
@@ -43,7 +43,7 @@ jobs:
shell: bash shell: bash
run: | run: |
pushd PawPaw && source local.env macos && popd pushd PawPaw && source local.env macos && popd
python ./waf configure --platform=darwin --prefix=/usr/local --example-tools
python ./waf configure --platform=darwin --prefix=/usr/local
python ./waf build -j $(sysctl -n hw.logicalcpu) python ./waf build -j $(sysctl -n hw.logicalcpu)
python ./waf install --destdir=$(pwd)/destdir python ./waf install --destdir=$(pwd)/destdir
- name: Set sha8 - name: Set sha8
@@ -90,7 +90,7 @@ jobs:
shell: bash shell: bash
run: | run: |
pushd PawPaw && source local.env macos-universal && popd pushd PawPaw && source local.env macos-universal && popd
python ./waf configure --platform=darwin --prefix=/usr/local --example-tools
python ./waf configure --platform=darwin --prefix=/usr/local
python ./waf build -j $(sysctl -n hw.logicalcpu) python ./waf build -j $(sysctl -n hw.logicalcpu)
python ./waf install --destdir=$(pwd)/destdir python ./waf install --destdir=$(pwd)/destdir
- name: Set sha8 - name: Set sha8
@@ -150,7 +150,7 @@ jobs:
shell: bash shell: bash
run: | run: |
pushd PawPaw && source local.env win32 && popd pushd PawPaw && source local.env win32 && popd
./waf configure --platform=win32 --prefix=$(pwd)/destdir --static --example-tools
./waf configure --platform=win32 --prefix=$(pwd)/destdir --static
./waf build -j $(nproc) ./waf build -j $(nproc)
./waf install ./waf install
- name: Generate MSVC lib files - name: Generate MSVC lib files
@@ -232,7 +232,7 @@ jobs:
pushd PawPaw && source local.env win64 && popd pushd PawPaw && source local.env win64 && popd
export PATH+=":/usr/i686-w64-mingw32/bin" export PATH+=":/usr/i686-w64-mingw32/bin"
export LDFLAGS+="-L~/PawPawBuilds/targets/win64/lib32" export LDFLAGS+="-L~/PawPawBuilds/targets/win64/lib32"
./waf configure --platform=win32 --prefix=$(pwd)/destdir --static --mixed --example-tools
./waf configure --platform=win32 --prefix=$(pwd)/destdir --static --mixed
./waf build -j $(nproc) ./waf build -j $(nproc)
./waf install ./waf install
- name: Generate MSVC lib files - name: Generate MSVC lib files
@@ -310,7 +310,7 @@ jobs:
#apt-get source -d jackd2 #apt-get source -d jackd2
#tar xf *.debian.tar.xz #tar xf *.debian.tar.xz
#rm -rf debian/source #rm -rf debian/source
#sed -i "s|--prefix=/usr --classic|--prefix=/usr --example-tools --classic|" debian/rules
#sed -i "s|--prefix=/usr --classic|--prefix=/usr --classic|" debian/rules
#dch -M -b -v "$(cat wscript | awk 'sub("^VERSION = ","")' | tr -d "'")~$(date +"%Y%m%d")git${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}" -D focal "automated build" #dch -M -b -v "$(cat wscript | awk 'sub("^VERSION = ","")' | tr -d "'")~$(date +"%Y%m%d")git${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}" -D focal "automated build"
#debuild -rfakeroot --no-lintian || true #debuild -rfakeroot --no-lintian || true
#- uses: actions/upload-artifact@v2 #- uses: actions/upload-artifact@v2


Loading…
Cancel
Save