-
Notifications
You must be signed in to change notification settings - Fork 86
/
xperimental-nix.yml.commented
57 lines (56 loc) · 1.78 KB
/
xperimental-nix.yml.commented
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#### NOTE: This job is disabled until nix supports the latest cargo workspace features.
#### See: https://github.com/NixOS/nixpkgs/pull/217232
#
#name: nix-build
#on:
# pull_request:
# push:
# branches: [main, 'release-v**']
#jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# with:
# # Nix Flakes doesn't work on shallow clones
# fetch-depth: 0
# - uses: cachix/install-nix-action@v17
# with:
# install_url: https://releases.nixos.org/nix/nix-2.10.3/install
# - uses: cachix/cachix-action@v10
# with:
# name: centrifuge-chain
# authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
# - name: Build centrifuge-chain
# run: nix build --no-allow-dirty -L
# name: docker
# on:
# push:
# branches: [main, 'release-v**']
# jobs:
# docker:
# strategy:
# matrix:
# os: [ ubuntu-latest ]
# target: [".#dockerImage", ".#dockerImageFastRuntime"]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - uses: cachix/install-nix-action@v17
# with:
# install_url: https://releases.nixos.org/nix/nix-2.10.3/install
# - name: Build Docker image
# run: |
# nix build --no-allow-dirty -L ${{ matrix.target }}
# docker load < result
# - name: Login to Docker Hub
# uses: docker/login-action@dd4fa0671be5250ee6f50aedf4cb05514abda2c7
# with:
# username: ${{ secrets.DOCKER_HUB_USERNAME }}
# password: ${{ secrets.DOCKER_HUB_TOKEN }}
# - name: List images
# run: docker images
# - name: Push image to Docker Hub
# run: docker push --all-tags --quiet centrifugeio/centrifuge-chain