Skip to content

Handle SIGTERM and signals from user space #374

Handle SIGTERM and signals from user space

Handle SIGTERM and signals from user space #374

Workflow file for this run

# This is a CI workflow that runs the test against Enterprise Edition of Faktory.
# The binary (for macos only) is avalable for download for testing purposes with each Faktory release.
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
name: enterprise
jobs:
test:
runs-on: macos-latest
env:
FAKTORY_VERSION: 1.9.0
steps:
- uses: actions/checkout@v4
- name: Install redis
run: brew install redis
- name: Download Faktory binary
run: |
wget -O faktory.tbz https://github.com/contribsys/faktory/releases/download/v${{ env.FAKTORY_VERSION }}/faktory-ent_${{ env.FAKTORY_VERSION }}.macos.amd64.tbz
tar xfv faktory.tbz
cp ./faktory /usr/local/bin
- name: Launch Faktory in background
run: faktory &
- name: Install stable
uses: dtolnay/rust-toolchain@stable
- name: cargo generate-lockfile
if: hashFiles('Cargo.lock') == ''
run: cargo generate-lockfile
- name: Run tests
env:
FAKTORY_URL: tcp://127.0.0.1:7419
FAKTORY_ENT: true
run: cargo test --locked --features ent --all-targets