File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,18 @@ jobs:
14
14
- uses : actions/checkout@v3
15
15
with :
16
16
submodules : ' recursive'
17
+ fetch-depth : 0
17
18
18
- - uses : cachix/install-nix-action@v18
19
+ - uses : cachix/install-nix-action@v22
19
20
with :
20
21
extra_nix_config : |
21
22
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
22
23
23
24
- name : Compile
24
- run : nix build .?submodules=1#packages.x86_64-linux.ton-oldglibc_staticbinaries --print-build-logs --system x86_64-linux -o result-x86_64
25
+ run : |
26
+ git submodule sync --recursive
27
+ git submodule update
28
+ nix build .?submodules=1#packages.x86_64-linux.ton-oldglibc_staticbinaries --print-build-logs --system x86_64-linux -o result-x86_64
25
29
26
30
- name : Copy binaries
27
31
run : |
Original file line number Diff line number Diff line change @@ -10,14 +10,18 @@ jobs:
10
10
- uses : actions/checkout@v3
11
11
with :
12
12
submodules : ' recursive'
13
+ fetch-depth : 0
13
14
14
- - uses : cachix/install-nix-action@v18
15
+ - uses : cachix/install-nix-action@v22
15
16
with :
16
17
extra_nix_config : |
17
18
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
18
19
19
20
- name : Compile
20
- run : nix build .?submodules=1#packages.x86_64-darwin.ton-staticbin-dylib --print-build-logs -o result-x86_64-darwin
21
+ run : |
22
+ git submodule sync --recursive
23
+ git submodule update
24
+ nix build .?submodules=1#packages.x86_64-darwin.ton-staticbin-dylib --print-build-logs -o result-x86_64-darwin
21
25
22
26
- name : Copy binaries
23
27
run : |
You can’t perform that action at this time.
0 commit comments