Skip to content

try fixed CI for link lzma; #267

try fixed CI for link lzma;

try fixed CI for link lzma; #267

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
make-build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: makeInit
run: |
git clone --depth=1 https://github.com/sisong/libmd5.git ../libmd5
git clone --depth=1 https://github.com/sisong/lzma.git ../lzma
git clone --depth=1 https://github.com/sisong/zstd.git ../zstd
git clone --depth=1 https://github.com/sisong/zlib.git ../zlib
git clone --depth=1 https://github.com/sisong/libdeflate.git ../libdeflate
- name: makeNoldef
run: |
make LDEF=0 -j
make LDEF=0 clean
make-build2:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: makeInit
run: |
git clone --depth=1 https://github.com/sisong/libmd5.git ../libmd5
git clone --depth=1 https://github.com/sisong/lzma.git ../lzma
git clone --depth=1 https://github.com/sisong/zstd.git ../zstd
git clone --depth=1 https://github.com/sisong/zlib.git ../zlib
git clone --depth=1 https://github.com/sisong/libdeflate.git ../libdeflate
- name: makeAll
run: |
make -j
make clean
- name: makeByBz2Code
run: |
git clone --depth=1 https://github.com/sisong/bzip2.git ../bzip2
make BZIP2=1 -j
make BZIP2=1 clean