This repository was archived by the owner on Dec 21, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +18
-16
lines changed
Expand file tree Collapse file tree 3 files changed +18
-16
lines changed Original file line number Diff line number Diff line change 11# MARK: Builder
2- FROM rust:1.63 AS builder
2+ FROM rust:1.65 AS builder
33
44WORKDIR /app
55
Original file line number Diff line number Diff line change 5959 steps :
6060 - uses : actions/setup-node@v2
6161 with :
62- node-version : ' 16 '
62+ node-version : ' 18 '
6363
6464 - name : Install Rivet CLI
6565 shell : bash
Original file line number Diff line number Diff line change 11let
2- # Include most recent Rust builds
3- moz_overlay = import ( builtins . fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz ) ;
4- pkgs = import <nixpkgs> { overlays = [ moz_overlay ] ; } ;
2+ moz_overlay = import ( builtins . fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/80627b282705101e7b38e19ca6e8df105031b072.tar.gz ) ;
3+ pkgs = import <nixpkgs> { overlays = [ moz_overlay ] ; } ;
54in
6- pkgs . mkShell {
7- name = "rivet-cli" ;
8- buildInputs = with pkgs ; [
9- cacert
5+ pkgs . mkShell {
6+ name = "rivet-cli" ;
7+ buildInputs = with pkgs ; [
8+ cacert
109
11- ( pkgs . latest . rustChannels . stable . rust . override {
12- targets = [ "wasm32-unknown-unknown" ] ;
13- } )
14- pkg-config
15- openssl
16- ] ;
17- }
10+ pkgs . latest . rustChannels . stable . rust
11+ pkg-config
12+ openssl
13+ libiconv
14+ ] ++ (
15+ pkgs . lib . optionals stdenv . isDarwin [
16+ darwin . apple_sdk . frameworks . Security
17+ ]
18+ ) ;
19+ }
1820
You can’t perform that action at this time.
0 commit comments