feat: use CARGO_TERM_COLOR to improve build logs #103
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: Check | |
| on: | |
| workflow_dispatch: | |
| merge_group: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| check-linux: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: Swatinem/rust-cache@v2 | |
| # https://github.com/servo/servo/blob/a0730d7154e183a9b2d9a9282061e6c67d87a263/.github/workflows/linux.yml#L141 | |
| - name: Set LIBCLANG_PATH # This is needed for bindgen in mozangle. | |
| run: echo "LIBCLANG_PATH=/usr/lib/llvm-14/lib" >> $GITHUB_ENV | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt install build-essential python3-pip ccache clang cmake curl \ | |
| g++ git gperf libdbus-1-dev libfreetype6-dev libgl1-mesa-dri \ | |
| libgles2-mesa-dev libglib2.0-dev libgstreamer-plugins-base1.0-dev \ | |
| gstreamer1.0-plugins-good libgstreamer-plugins-good1.0-dev \ | |
| gstreamer1.0-plugins-bad libgstreamer-plugins-bad1.0-dev \ | |
| gstreamer1.0-plugins-ugly gstreamer1.0-plugins-base \ | |
| libgstreamer-plugins-base1.0-dev gstreamer1.0-libav \ | |
| libgstrtspserver-1.0-dev gstreamer1.0-tools libges-1.0-dev \ | |
| libharfbuzz-dev liblzma-dev libunwind-dev libvulkan1 \ | |
| libx11-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev \ | |
| libxmu-dev libxmu6 libegl1-mesa-dev llvm-dev m4 xorg-dev sway \ | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.1.0 | |
| - name: Check | |
| run: cargo check | |
| check-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.1.0 | |
| # Mozangle needs Clang 19+ | |
| # see https://github.com/tauri-apps/verso/actions/runs/15916377747/job/44894669786?pr=20 | |
| - name: Install LLVM and Clang | |
| uses: KyleMayes/install-llvm-action@v2 | |
| with: | |
| version: "20" | |
| - name: Check | |
| run: cargo check | |
| check-mac: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.1.0 | |
| - name: Install dependencies | |
| run: | | |
| curl https://gstreamer.freedesktop.org/data/pkg/osx/1.26.5/gstreamer-1.0-1.26.5-universal.pkg -o runtime.pkg | |
| sudo installer -pkg runtime.pkg -target / | |
| curl https://gstreamer.freedesktop.org/data/pkg/osx/1.26.5/gstreamer-1.0-devel-1.26.5-universal.pkg -o develop.pkg | |
| sudo installer -pkg develop.pkg -target / | |
| - name: Check | |
| run: cargo check |