Skip to content

Commit

Permalink
gocryptfs: github ci: also test on ubuntu-22.04
Browse files Browse the repository at this point in the history
Additionally, run the test every month so we always have
a recent result available. Github deletes logs after 90 days.
  • Loading branch information
rfjakob committed Jan 1, 2023
1 parent 61e5331 commit 10fee79
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: '0 12 1 * *' # Every 1st of a month at noon UTC

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
os: [ubuntu-18.04, ubuntu-20.04, ubuntu-22.04]
# Don't cancel everything when one version fails
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: apt-get
Expand All @@ -14,6 +20,6 @@ jobs:
sudo apt-get -qq install xfslibs-dev uuid-dev libtool-bin \
e2fsprogs automake gcc libuuid1 quota attr libattr1-dev make \
libacl1-dev libaio-dev xfsprogs libgdbm-dev gawk fio dbench \
uuid-runtime python sqlite3 fuse
uuid-runtime python3 sqlite3 fuse
- name: make
run: make -j $(nproc)

0 comments on commit 10fee79

Please sign in to comment.