readme: direnv may not be already installed #402
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: "CI" | |
on: | |
push: | |
branches: | |
- main | |
- update_flake_lock_action | |
- ci/** | |
pull_request: | |
jobs: | |
nix: | |
runs-on: ${{ matrix.system }} | |
strategy: | |
matrix: | |
system: [aarch64-darwin, x86_64-darwin, x86_64-linux] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: om show | |
run: om show . | |
- name: om ci | |
run: om ci --extra-access-tokens "github.com=${{ secrets.GITHUB_TOKEN }}" run --systems "${{ matrix.system }}" | |
# Make sure that the templates at least build after initialized | |
# TODO: Ideally, we want to let `omnix` run these tests | |
# https://github.com/juspay/omnix/issues/282 | |
- name: NixOS test | |
if: matrix.system == 'x86_64-linux' | |
run: | | |
CONF=${{ runner.temp }}/nixos && mkdir $CONF | |
om init .#nixos -o $CONF \ | |
--non-interactive \ | |
--params '{"hostname": "example", "username": "srid", "git-name": "Srid", "git-email": "[email protected]"}' | |
set -x | |
nix build ${CONF}#nixosConfigurations.example.config.system.build.toplevel | |
type -f ./result/etc/profiles/per-user/srid/bin/git | |
- name: nix-darwin test | |
if: matrix.system == 'aarch64-darwin' || matrix.system == 'x86_64-darwin' | |
run: | | |
CONF=${{ runner.temp }}/darwin && mkdir $CONF | |
om init .#darwin -o $CONF \ | |
--non-interactive \ | |
--params '{"hostname": "example", "username": "srid", "git-name": "Srid", "git-email": "[email protected]"}' | |
set -x | |
nix build ${CONF}#darwinConfigurations.example.config.system.build.toplevel | |
type -f ./result/etc/profiles/per-user/srid/bin/git | |
# TODO: Use `om init` like above | |
- name: activate-test | |
if: matrix.system == 'x86_64-linux' | |
run: nix run .#test-home-manager-config |