try fixed CI for link lzma; #268
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 USE_CRC_EMU=1 -j | |
make 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 USE_CRC_EMU=1 -j | |
make clean | |
- name: makeByBz2Code | |
run: | | |
git clone --depth=1 https://github.com/sisong/bzip2.git ../bzip2 | |
make BZIP2=1 USE_CRC_EMU=1 -j | |
make BZIP2=1 clean |