This sha8 approach works
This commit is contained in:
parent
cd6b8fda09
commit
18682bbc70
|
@ -33,9 +33,12 @@ jobs:
|
||||||
LDFLAGS: -static-libgcc -static-libstdc++
|
LDFLAGS: -static-libgcc -static-libstdc++
|
||||||
run: |
|
run: |
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
|
- name: Set sha8
|
||||||
|
id: slug
|
||||||
|
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-linux-arm64-${{ github.event.pull_request.number || github.sha }}
|
name: ${{ github.event.repository.name }}-linux-arm64-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
|
||||||
path: |
|
path: |
|
||||||
bin/*
|
bin/*
|
||||||
|
|
||||||
|
@ -61,9 +64,12 @@ jobs:
|
||||||
LDFLAGS: -static-libgcc -static-libstdc++
|
LDFLAGS: -static-libgcc -static-libstdc++
|
||||||
run: |
|
run: |
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
|
- name: Set sha8
|
||||||
|
id: slug
|
||||||
|
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-linux-armhf-${{ github.event.pull_request.number || github.sha }}
|
name: ${{ github.event.repository.name }}-linux-armhf-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
|
||||||
path: |
|
path: |
|
||||||
bin/*
|
bin/*
|
||||||
|
|
||||||
|
@ -81,9 +87,12 @@ jobs:
|
||||||
LDFLAGS: -static-libgcc -static-libstdc++
|
LDFLAGS: -static-libgcc -static-libstdc++
|
||||||
run: |
|
run: |
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
|
- name: Set sha8
|
||||||
|
id: slug
|
||||||
|
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-linux-x64-${{ github.event.pull_request.number || github.sha }}
|
name: ${{ github.event.repository.name }}-linux-x64-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
|
||||||
path: |
|
path: |
|
||||||
bin/*
|
bin/*
|
||||||
|
|
||||||
|
@ -105,9 +114,12 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
make NOOPT=true -j $(sysctl -n hw.logicalcpu) && \
|
make NOOPT=true -j $(sysctl -n hw.logicalcpu) && \
|
||||||
./dpf/utils/package-osx-bundles.sh
|
./dpf/utils/package-osx-bundles.sh
|
||||||
|
- name: Set sha8
|
||||||
|
id: slug
|
||||||
|
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-macOS-universal-${{ github.event.pull_request.number || github.sha }}
|
name: ${{ github.event.repository.name }}-macOS-universal-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
|
||||||
path: |
|
path: |
|
||||||
*-macOS.pkg
|
*-macOS.pkg
|
||||||
bin/*
|
bin/*
|
||||||
|
@ -136,9 +148,12 @@ jobs:
|
||||||
WINEDEBUG: "-all"
|
WINEDEBUG: "-all"
|
||||||
run: |
|
run: |
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
|
- name: Set sha8
|
||||||
|
id: slug
|
||||||
|
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-win32-${{ github.event.pull_request.number || github.sha }}
|
name: ${{ github.event.repository.name }}-win32-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
|
||||||
path: |
|
path: |
|
||||||
bin/*
|
bin/*
|
||||||
!bin/*-ladspa.dll
|
!bin/*-ladspa.dll
|
||||||
|
@ -162,7 +177,7 @@ jobs:
|
||||||
WINEDEBUG: "-all"
|
WINEDEBUG: "-all"
|
||||||
run: |
|
run: |
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
- name: Get short SHA
|
- name: Set sha8
|
||||||
id: slug
|
id: slug
|
||||||
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
|
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
|
|
Loading…
Reference in New Issue