Print memcr arch and kernel uname info #58
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 x86_64 | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y liblz4-dev liblz4-1 | |
sudo apt-get install -y libssl-dev libssl3 | |
- name: build | |
run: | | |
make | |
make clean | |
- name: build lz4 | |
run: | | |
make COMPRESS_LZ4=1 | |
make clean | |
- name: build md5 | |
run: | | |
make CHECKSUM_MD5=1 | |
make clean | |
- name: build lz4 md5 enc | |
run: | | |
make COMPRESS_LZ4=1 CHECKSUM_MD5=1 ENCRYPT=1 | |
make clean |