Merge pull request #319 from firezone/use-node-lts

Stick to nodejs lts 14
This commit is contained in:
Jamil
2021-11-05 14:08:46 -07:00
committed by GitHub
6 changed files with 479 additions and 13178 deletions

View File

@@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '14'
- uses: erlef/setup-beam@v1
with:
otp-version: '24'

View File

@@ -1,5 +1,5 @@
# These should match the versions used in the build
nodejs 16.6.2
nodejs 14.18.1
elixir 1.12.3-otp-24
erlang 24.1.4
ruby 2.7.4

File diff suppressed because it is too large Load Diff

View File

@@ -66,7 +66,7 @@ defmodule FirezoneUmbrella.MixProject do
"ecto.seed": "run apps/fz_http/priv/repo/seeds.exs",
"ecto.setup": ["ecto.create", "ecto.migrate", "ecto.seed"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
start: ["phx.server", "run --no-halt"]
start: ["compile --no-validate-compile-env", "phx.server", "run --no-halt"]
]
end
end

View File

@@ -1,6 +1,6 @@
name "nodejs"
description "NodeJS"
default_version "16.6.2"
default_version "14.18.1"
license_file "LICENSE"
source url: "https://github.com/nodejs/node/archive/refs/tags/v#{version}.tar.gz"
@@ -8,6 +8,9 @@ source url: "https://github.com/nodejs/node/archive/refs/tags/v#{version}.tar.gz
version("16.6.2") do
source sha256: "9b539b1ea5e3fbd173fcbaae97088401b228c36c2076c98d04c73802713bbb73"
end
version("14.18.1") do
source sha256: "ee873d13ce00680c682be27132a420b3b5620f17549906dda7e2398b56ba41b0"
end
dependency "python"

View File

@@ -1,5 +1,11 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
require 'omnibus'
Omnibus::Config.append_timestamp false
print Omnibus::BuildVersion.semver
begin
require "omnibus"
rescue LoadError
print "0.0.0"
else
Omnibus::Config.append_timestamp false
print Omnibus::BuildVersion.semver
end