This commit is contained in:
iFargle 2023-10-03 19:42:17 +09:00
parent 64f8968539
commit e47eddf8c0
4 changed files with 9 additions and 6 deletions

View file

@ -0,0 +1,2 @@
FROM nixos/nix
ENTRYPOINT [ "/root/.nix-profile/bin/sleep", "10000" ]

View file

@ -1,2 +0,0 @@
FROM ubuntu
RUN echo "Hello from ubuntu"

View file

@ -1,2 +0,0 @@
FROM ubuntu
RUN echo "Hello from ubuntu"

View file

@ -19,12 +19,17 @@ jobs:
- name: "Directory Structure" - name: "Directory Structure"
run: | run: |
ls ${{ github.workspace }}/* ls ${{ github.workspace }}/*
- name: "Node Info" - name: "Runner: Node Info"
run: |
id
uname -a
hostname
- uses: ./.forgejo/actions/builder
- name: "Docker: Node Info"
run: | run: |
id id
uname -a uname -a
hostname hostname
- uses: ./.forgejo/actions/docker
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event." - 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 "This job is now running on a ${{ runner.os }} server."