Autohide dock #1826
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: Build | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- bin | |
- .pre-commit-config.yaml | |
- README.md | |
- LICENSE | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- bin | |
- .pre-commit-config.yaml | |
- README.md | |
- LICENSE | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- run: df -h | |
- name: Increase build space | |
run: | | |
sudo rm -rf /usr/local/lib/android | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
sudo rm -rf /usr/local/share/boost | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
sudo rm -rf /opt/hostedtoolcache/CodeQL | |
sudo docker image prune --all --force | |
- run: df -h | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: mindriot101-home | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build '.#homeConfigurations.x86_64-linux.simon.activationPackage' | |
minimal: | |
strategy: | |
matrix: | |
runtime: | |
- os: ubuntu-latest | |
property: x86_64-linux | |
fail-fast: true | |
runs-on: ${{ matrix.runtime.os }} | |
steps: | |
- run: df -h | |
- name: Increase build space | |
if: ${{ matrix.runtime.os == 'ubuntu-latest' }} | |
run: | | |
sudo rm -rf /usr/local/lib/android | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
sudo rm -rf /usr/local/share/boost | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
sudo rm -rf /opt/hostedtoolcache/CodeQL | |
sudo docker image prune --all --force | |
- run: df -h | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: mindriot101-home | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build .#homeConfigurations.${{ matrix.runtime.property }}.minimal.activationPackage |