workflow: try on ubuntu-latest with custom HOME
This commit is contained in:
@@ -5,21 +5,25 @@ on:
|
|||||||
branches: [ main ]
|
branches: [ main ]
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-docker:
|
build-docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: ghcr.io/cachix/devenv/devenv:latest
|
env:
|
||||||
|
HOME: ${{ gitea.workspace }}/.home
|
||||||
steps:
|
steps:
|
||||||
|
- name: Prepare HOME
|
||||||
|
run: mkdir -p "$HOME"
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
# - name: Install nix
|
- name: Install nix
|
||||||
# uses: cachix/install-nix-action@v31
|
uses: cachix/install-nix-action@v31
|
||||||
# - name: Setup cachix cache for devenv
|
- name: Setup cachix cache for devenv
|
||||||
# uses: cachix/cachix-action@v16
|
uses: cachix/cachix-action@v16
|
||||||
# with:
|
with:
|
||||||
# name: devenv
|
name: devenv
|
||||||
# - name: Install devenv.sh
|
- name: Install devenv.sh
|
||||||
# run: nix profile install nixpkgs#devenv
|
run: nix profile install nixpkgs#devenv
|
||||||
- name: Build the devenv shell and run any pre-commit hooks
|
- name: Build the devenv shell and run any pre-commit hooks
|
||||||
run: devenv test
|
run: devenv test
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user