Merge pull request #1 from silverdaz/extended-attributes #17
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: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt-get install -y libsodium-dev libfuse3-dev libssl-dev pkg-config python3 python3-pip autoconf automake make gcc | |
- name: Update fuse3 | |
run: sudo sed -i '/user_allow_other/s/^#.*user_allow_other$/user_allow_other/' /etc/fuse.conf | |
- name: Install Crypt4GH | |
run: sudo python3 -m pip install crypt4gh | |
- name: Compile | |
run: | | |
autoreconf -i | |
./configure | |
make | |
sudo make install | |
- name: Update the test and start the file system | |
run: make -C example update up | |
- name: Test | |
run: diff example/mnt/crypt4gh/cleartext <(C4GH_PASSPHRASE=hello crypt4gh decrypt --sk example/example.seckey < example/mnt/crypt4gh/encrypted 2>/dev/null) | |
- name: Tear down | |
run: make -C example down |