From 6f0ed4b8c400cd53ccb42eb83c52ead483646b78 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Thu, 29 Jul 2021 12:12:49 +0200 Subject: github ci: Add Github Actions CI Add Github Actions and delete defunct Travis CI. --- .github/workflows/ci.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/ci.yml (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..c1b509d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,33 @@ +name: CI + +on: + push: + pull_request: + schedule: + - cron: '0 12 * * *' # Every day noon UTC + +jobs: + build: + runs-on: ubuntu-latest + steps: + + # Looks like Github Actions leaks fds to child processes + # https://github.com/actions/runner/issues/1188 + - run: ls -l /proc/self/fd + + - uses: actions/checkout@v2 + with: + fetch-depth: 0 # Make "git describe" work + + # CI platform specific setup steps happen here + - run: sudo apt-get install -qq fuse3 libssl-dev + + # Build & upload static binary + - run: ./build-without-openssl.bash + - uses: actions/upload-artifact@v2 + with: + name: gocryptfs static binary + path: gocryptfs + + # Actual test steps are in the Makefile + - run: make ci -- cgit v1.2.3