continuwuity/.github/workflows/ci.yml
Workflow config file is invalid. Please check your config file: yaml: line 18: mapping values are not allowed in this context
2024-01-18 15:37:13 +01:00

89 lines
No EOL
2.4 KiB
YAML

name: CI
on:
pull_request:
push:
branches:
- main
env:
# Required to make some things output color
TERM: ansi
REGISTRY: ghcr.io
REPOSITORY: ${{ github.repository }}
TAG: latest
jobs:
ci:7
name: CI
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Sync repository
uses: actions/checkout@v4
- name: Uninstall obstructive tools
run: rm -rf "$HOME/.rustup" "$HOME/.cargo"
- name: Install Nix (with flakes and nix-command enabled)
uses: cachix/install-nix-action@v25
with:
nix_path: nixpkgs=channel:nixos-unstable
# Add the `nix-community` cachix to speed up things that leverage it
extra_nix_config: |
extra-substituters = https://nix-community.cachix.org
extra-trusted-public-keys = nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=
- name: Pop/push Magic Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@v2
- name: Configure `nix-direnv`
run: |
echo 'source $HOME/.nix-profile/share/nix-direnv/direnvrc' > "$HOME/.direnvrc"
- name: Install `direnv` and `nix-direnv`
run: nix-env -f "<nixpkgs>" -i direnv -i nix-direnv
- name: Pop/push downloaded crate cache
uses: actions/cache@v3
with:
key: downloaded-crates
path: ~/.cargo
- name: Pop/push compiled crate cache
uses: actions/cache@v3
with:
key: compiled-crates-${{runner.os}}
path: target
# Do this to shorten the logs for the real CI step
- name: Populate `/nix/store`
run: nix develop --command true
- name: Perform continuous integration
run: |
direnv allow
direnv exec . engage
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build docker image
run: nix build .#oci-image
- name: Push docker image to DockerHub
run: |
export REPO_LOWER_CASE = echo "$REPOSITORY" | tr '[:upper:]' '[:lower:]'
docker load < result
docker tag conduwuit:latest $REPO_LOWER_CASE:${{ env.TAG }}
docker push $REPO_LOWER_CASE:${{ env.TAG }}