[client] Don't fail debug if log file is console (#3103) #805
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: Test installation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- "release_files/install.sh" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || github.actor_id }} | |
cancel-in-progress: true | |
jobs: | |
test-install-script: | |
strategy: | |
fail-fast: false | |
max-parallel: 2 | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
skip_ui_mode: [true, false] | |
install_binary: [true, false] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: run install script | |
env: | |
SKIP_UI_APP: ${{ matrix.skip_ui_mode }} | |
USE_BIN_INSTALL: ${{ matrix.install_binary }} | |
GITHUB_TOKEN: ${{ secrets.RO_API_CALLER_TOKEN }} | |
run: | | |
[ "$SKIP_UI_APP" == "false" ] && export XDG_CURRENT_DESKTOP="none" | |
cat release_files/install.sh | sh -x | |
- name: check cli binary | |
run: command -v netbird |