Check installation script #34
Workflow file for this run
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: Check installation script | |
on: | |
pull_request: | |
paths: | |
- scripts/install.sh | |
merge_group: | |
paths: | |
- scripts/install.sh | |
push: | |
branches: | |
- main | |
paths: | |
- scripts/install.sh | |
jobs: | |
verify-installation-script: | |
name: Verify installation script | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- target: x86_64-unknown-linux-gnu | |
os: ubuntu-latest | |
- target: x86_64-unknown-linux-musl | |
os: ubuntu-latest | |
- target: aarch64-unknown-linux-gnu | |
os: ubuntu-latest | |
- target: aarch64-unknown-linux-musl | |
os: ubuntu-latest | |
- target: x86_64-apple-darwin | |
os: macos-latest | |
- target: aarch64-apple-darwin | |
os: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install and check | |
shell: bash | |
run: | | |
bash ./scripts/install.sh | |
source ~/.bashrc | |
if ! command -v cairo-profiler &> /dev/null; then | |
echo "cairo-profiler was not installed" | |
exit 1 | |
fi |