Compare commits

..

No commits in common. "8bc98a55a32d08bb71b80ecf74e5e8d749df2fd5" and "e631dbf1ce41106594fed7b95ee6bcc675ca014a" have entirely different histories.

View file

@ -5,7 +5,7 @@ on:
branches:
- '**'
schedule:
- cron: '30 2 * * *' # not to frequent, GitHub only allows a few pulls per hour
- cron: '50 12 * * *' # not to frequent, GitHub only allows a few pulls per hour
jobs:
nix build:
@ -15,7 +15,6 @@ jobs:
- name: update nix flakes
if: ${{ github.event_name == 'schedule' }}
# we need to use our ssh key here because we need access to private flakes
run: |
cat <<EOF > .ssh_key
${{ secrets.SSH_KEY }}
@ -31,23 +30,22 @@ jobs:
kill $SSH_AGENT_PID
rm .ssh_key
- name: nix flake archive/check
# we need to use our ssh key here because we need access to private flakes
- name: nix flake archive
run: |
cat <<EOF > .ssh_key
cat <<EOF > .id_rsa
${{ secrets.SSH_KEY }}
EOF
chmod 600 .ssh_key
chmod 600 .id_rsa
eval $(ssh-agent)
ssh-add .ssh_key
ssh-add .id_rsa
nix flake archive
nix flake check --verbose --log-format raw
echo $SSH_AGENT_PID
kill $SSH_AGENT_PID
rm .ssh_key
rm .id_rsa
- name: nix build orbi
run: nix build .#nixosConfigurations.orbi.config.system.build.toplevel
@ -61,13 +59,78 @@ jobs:
- name: nix build chungus
run: nix build .#nixosConfigurations.chungus.config.system.build.toplevel
- name: commit & push
- name: push
if: ${{ github.event_name == 'schedule' }}
# only if all nix builds are fine we update our branch
run: |
git config --local user.email "action@git.ingolf-wagner.de"
git config --local user.name "Forgejo Action :robot:"
git config --local user.name "Forgejo Action"
git diff --quiet && \
git diff --staged --quiet || \
(git commit -am ":arrow_up: nix flake update" && git push)
(git commit -am "Update Nix flakes" && git push)
#name: Build all NixOS Configurations
#on:
# - push
# #schedule:
# # - cron: "20 12 * * *" # not to frequent, GitHub only allows a few pulls per hour
#jobs:
# nix build:
# runs-on: native
# steps:
# - name: checkout repository
# uses: actions/checkout@v2
# with:
# depth: 0
# - name: update nix flakes
# #if: github.event_name == 'schedule'
# run: |
# cat <<EOF > .ssh_key
# ${{ secrets.SSH_KEY }}
# EOF
# chmod 600 .ssh_key
# eval $(ssh-agent)
# ssh-add .ssh_key
# nix flake update
#
# echo $SSH_AGENT_PID
# kill $SSH_AGENT_PID
# rm .ssh_key
# - name: fetch and check
# run: |
# cat <<EOF > .ssh_key
# ${{ secrets.SSH_KEY }}
# EOF
# chmod 600 .ssh_key
# eval $(ssh-agent)
# ssh-add .ssh_key
# nix flake archive
# nix flake check --verbose --log-format raw
#
# echo $SSH_AGENT_PID
# kill $SSH_AGENT_PID
# rm .ssh_key
# - name: nix build orbi
# run: nix build .#nixosConfigurations.orbi.config.system.build.toplevel
# - name: nix build cream
# run: nix build .#nixosConfigurations.cream.config.system.build.toplevel
# - name: nix build cherry
# run: nix build .#nixosConfigurations.cherry.config.system.build.toplevel
# - name: nix build chungus
# run: nix build .#nixosConfigurations.chungus.config.system.build.toplevel