forked from Fediversity/Fediversity
explicitly specify container image
This commit is contained in:
parent
3a4d0679d5
commit
953bbc7349
1 changed files with 14 additions and 0 deletions
|
@ -11,12 +11,16 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
check-pre-commit:
|
check-pre-commit:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
|
container:
|
||||||
|
image: icewind1991/nix-runner
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: nix-build -A tests
|
- run: nix-build -A tests
|
||||||
|
|
||||||
check-data-model:
|
check-data-model:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
|
container:
|
||||||
|
image: icewind1991/nix-runner
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: nix-shell --run 'nix-unit ./deployment/data-model-test.nix'
|
- run: nix-shell --run 'nix-unit ./deployment/data-model-test.nix'
|
||||||
|
@ -29,30 +33,40 @@ jobs:
|
||||||
|
|
||||||
check-peertube:
|
check-peertube:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
|
container:
|
||||||
|
image: icewind1991/nix-runner
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: nix build .#checks.x86_64-linux.test-peertube-service -L
|
- run: nix build .#checks.x86_64-linux.test-peertube-service -L
|
||||||
|
|
||||||
check-panel:
|
check-panel:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
|
container:
|
||||||
|
image: icewind1991/nix-runner
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: nix-build -A tests.panel
|
- run: nix-build -A tests.panel
|
||||||
|
|
||||||
check-deployment-basic:
|
check-deployment-basic:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
|
container:
|
||||||
|
image: icewind1991/nix-runner
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: nix build .#checks.x86_64-linux.deployment-basic -L
|
- run: nix build .#checks.x86_64-linux.deployment-basic -L
|
||||||
|
|
||||||
check-deployment-cli:
|
check-deployment-cli:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
|
container:
|
||||||
|
image: icewind1991/nix-runner
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: nix build .#checks.x86_64-linux.deployment-cli -L
|
- run: nix build .#checks.x86_64-linux.deployment-cli -L
|
||||||
|
|
||||||
check-deployment-panel:
|
check-deployment-panel:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
|
container:
|
||||||
|
image: icewind1991/nix-runner
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: nix build .#checks.x86_64-linux.deployment-panel -L
|
- run: nix build .#checks.x86_64-linux.deployment-panel -L
|
||||||
|
|
Loading…
Add table
Reference in a new issue