mirror of
https://github.com/facebook/zstd.git
synced 2025-11-06 09:29:23 +02:00
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.2 to 3.1.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](0b7f8abb15...a8a3f3ad30)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
59 lines
1.8 KiB
YAML
59 lines
1.8 KiB
YAML
name: windows-artifacts
|
|
|
|
on:
|
|
push:
|
|
branches: [ test_artifacts, win_artifacts ]
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
windows-artifacts:
|
|
# see https://ariya.io/2020/07/on-github-actions-with-msys2
|
|
runs-on: windows-latest
|
|
# see https://github.com/msys2/setup-msys2
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- { msystem: mingw64, env: x86_64, ziparch: win64 }
|
|
- { msystem: mingw32, env: i686, ziparch: win32 }
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
steps:
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # tag=v3
|
|
- uses: msys2/setup-msys2@5beef6d11f48bba68b9eb503e3adc60b23c0cc36 # tag=v2
|
|
with:
|
|
msystem: ${{ matrix.msystem }}
|
|
install: make zlib git p7zip mingw-w64-${{matrix.env}}-gcc
|
|
update: true
|
|
|
|
- name: display versions
|
|
run: |
|
|
make -v
|
|
cc -v
|
|
|
|
- name: Building zlib to static link
|
|
run: |
|
|
git clone --depth 1 --branch v1.2.11 https://github.com/madler/zlib
|
|
make -C zlib -f win32/Makefile.gcc libz.a
|
|
|
|
- name: Building zstd programs
|
|
run: |
|
|
CPPFLAGS=-I../zlib LDFLAGS=../zlib/libz.a make -j allzstd MOREFLAGS=-static V=1
|
|
|
|
- name: Create artifacts
|
|
run: |
|
|
./lib/dll/example/build_package.bat
|
|
mv bin/ zstd-${{ github.ref_name }}-${{matrix.ziparch}}/
|
|
7z a -tzip -mx9 zstd-${{ github.ref_name }}-${{matrix.ziparch}}.zip zstd-${{ github.ref_name }}-${{matrix.ziparch}}/
|
|
cd ..
|
|
|
|
- name: Publish zstd-$VERSION-${{matrix.ziparch}}.zip
|
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # tag=v3
|
|
with:
|
|
path: ${{ github.workspace }}/zstd-${{ github.ref_name }}-${{matrix.ziparch}}.zip
|
|
name: zstd-${{ github.ref_name }}-${{matrix.ziparch}}.zip
|