mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
upgrade nixpkgs to v22 (#784)
This commit is contained in:
parent
77847968fa
commit
a1d2d7cb04
2 changed files with 12 additions and 4 deletions
8
.github/workflows/ton-x86-64-linux.yml
vendored
8
.github/workflows/ton-x86-64-linux.yml
vendored
|
@ -14,14 +14,18 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: 'recursive'
|
||||
fetch-depth: 0
|
||||
|
||||
- uses: cachix/install-nix-action@v18
|
||||
- uses: cachix/install-nix-action@v22
|
||||
with:
|
||||
extra_nix_config: |
|
||||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Compile
|
||||
run: nix build .?submodules=1#packages.x86_64-linux.ton-oldglibc_staticbinaries --print-build-logs --system x86_64-linux -o result-x86_64
|
||||
run: |
|
||||
git submodule sync --recursive
|
||||
git submodule update
|
||||
nix build .?submodules=1#packages.x86_64-linux.ton-oldglibc_staticbinaries --print-build-logs --system x86_64-linux -o result-x86_64
|
||||
|
||||
- name: Copy binaries
|
||||
run: |
|
||||
|
|
8
.github/workflows/ton-x86-64-macos.yml
vendored
8
.github/workflows/ton-x86-64-macos.yml
vendored
|
@ -10,14 +10,18 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: 'recursive'
|
||||
fetch-depth: 0
|
||||
|
||||
- uses: cachix/install-nix-action@v18
|
||||
- uses: cachix/install-nix-action@v22
|
||||
with:
|
||||
extra_nix_config: |
|
||||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Compile
|
||||
run: nix build .?submodules=1#packages.x86_64-darwin.ton-staticbin-dylib --print-build-logs -o result-x86_64-darwin
|
||||
run: |
|
||||
git submodule sync --recursive
|
||||
git submodule update
|
||||
nix build .?submodules=1#packages.x86_64-darwin.ton-staticbin-dylib --print-build-logs -o result-x86_64-darwin
|
||||
|
||||
- name: Copy binaries
|
||||
run: |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue