FIX: Fix authorization check for gat and touch commands #1138
Workflow file for this run
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "develop" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Arcus Server Dependency Packages | |
| run: sudo apt-get install -qq build-essential autoconf automake libtool | |
| - name: Cache ARCUS Directory | |
| id: arcus-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/arcus | |
| key: ${{runner.os}}-arcus | |
| - name: Install Arcus Server Dependency Libraries | |
| if: steps.arcus-cache.outputs.cache-hit != 'true' | |
| run: ./deps/install.sh $HOME/arcus | |
| - name: Build Arcus Server | |
| run: | | |
| ./config/autorun.sh | |
| ./configure --enable-zk-integration --with-zk-reconfig --enable-sasl --with-libevent=${HOME}/arcus --with-zookeeper=${HOME}/arcus --with-sasl=${HOME}/arcus | |
| make | |
| - name: Test ARCUS Server | |
| run: make test |