Test
This commit is contained in:
parent
92d955f05a
commit
b1457e21c5
1 changed files with 16 additions and 6 deletions
|
@ -36,12 +36,22 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
nix --version
|
nix --version
|
||||||
|
|
||||||
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
|
- name: "Nix build"
|
||||||
- run: echo "This job is now running on a ${{ runner.os }} server."
|
run: |
|
||||||
- run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
|
echo "Running Nix Build"
|
||||||
- run: echo "The ${{ github.repository }} repository has been cloned to the runner."
|
nix \
|
||||||
- run: echo "The workflow is now ready to test your code on the runner."
|
--enable-experimental-features flakes \
|
||||||
- run: echo "This job's status is ${{ job.status }}."
|
--enable-experimental-features nix-command \
|
||||||
|
build /workspace/albert/nix#imageConfigurations.nixos-iso-console
|
||||||
|
echo "Results:"
|
||||||
|
ls result/iso/
|
||||||
|
|
||||||
|
# - run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
|
||||||
|
# - run: echo "This job is now running on a ${{ runner.os }} server."
|
||||||
|
# - run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
|
||||||
|
# - run: echo "The ${{ github.repository }} repository has been cloned to the runner."
|
||||||
|
# - run: echo "The workflow is now ready to test your code on the runner."
|
||||||
|
# - run: echo "This job's status is ${{ job.status }}."
|
||||||
|
|
||||||
- if: always()
|
- if: always()
|
||||||
run: rm -rf /.cache
|
run: rm -rf /.cache
|
||||||
|
|
Loading…
Reference in a new issue