Fix compilation warnings #55
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: amd64_macos_clang | |
on: [push, pull_request] | |
jobs: | |
amd64_macos_clang: | |
runs-on: macos-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Retrieve test compression corpus | |
run: | | |
git clone https://github.com/ariya/compression-corpus.git | |
cd compression-corpus | |
cd enwik | |
unzip enwik8.zip | |
- run: cc --version | |
- run: cd tests && make roundtrip | |
name: Perform round-trip tests | |
- name: 'Build examples: 6pack and 6unpack' | |
run: cd examples && make | |
- name: 'Run examples: 6pack and 6unpack' | |
run: | | |
cd examples | |
./6pack -v | |
./6pack ../compression-corpus/enwik/enwik8.txt archive.6pk | |
./6unpack -v | |
./6unpack archive.6pk |