about summary refs log tree commit diff
path: root/tools/nixery/.github/workflows/build-and-test.yaml
blob: 3ae4e639e31e32afe8b9921481861d5a87441772 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Build Nixery, spin up an instance and pull an image from it.
name: "Build and test Nixery"
on:
  push:
    branches:
      - master
  pull_request: {}
env:
  NIX_PATH: "nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/0a40a3999eb4d577418515da842a2622a64880c5.tar.gz"
jobs:
  build-and-test:
    runs-on: ubuntu-latest
    steps:
      - name: "Do we have Docker?"
        run: |
          docker ps -a
      - name: Install Nix
        uses: cachix/install-nix-action@v13
      - name: Checkout
        uses: actions/checkout@v2.3.4
      - name: Prepare environment
        run: |
          mkdir test-storage
          nix-env -f '<nixpkgs>' -iA go
      - name: Check formatting
        run: "test -z $(gofmt -l .)"
      - name: Build Nixery
        run: "nix-build --arg maxLayers 2"
      - name: Run integration test
        run: scripts/integration-test.sh