diff --git a/.ci/utils/use-esy.yml b/.ci/utils/use-esy.yml index c5150f41..f77fca7c 100644 --- a/.ci/utils/use-esy.yml +++ b/.ci/utils/use-esy.yml @@ -1,9 +1,9 @@ # steps to install esy globally steps: - - script: "sudo npm install --prefix /usr/local --unsafe-perm -g esy" - displayName: "install esy" - condition: ne(variables['Agent.OS'], 'Windows_NT') - - script: "npm install -g esy" + # - script: "sudo npm install --prefix /usr/local --unsafe-perm -g esy" + # displayName: "install esy" + # condition: ne(variables['Agent.OS'], 'Windows_NT') + - script: "npm install -g esy@beta" displayName: "install esy" condition: eq(variables['Agent.OS'], 'Windows_NT') diff --git a/azure-pipelines.yml b/azure-pipelines.yml index df148fb1..b33b4c7c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,15 +16,15 @@ trigger: - LICENSE jobs: - - template: .ci/build-platform.yml - parameters: - platform: Linux - vmImage: ubuntu-latest + # - template: .ci/build-platform.yml + # parameters: + # platform: Linux + # vmImage: ubuntu-latest - - template: .ci/build-platform.yml - parameters: - platform: macOS - vmImage: macOS-latest + # - template: .ci/build-platform.yml + # parameters: + # platform: macOS + # vmImage: macOS-latest # Need windows-2019 to do esy import/export-dependencies # which assumes you have bsdtar (tar.exe) in your system @@ -33,17 +33,17 @@ jobs: - template: .ci/build-platform.yml parameters: platform: Windows - vmImage: windows-2019 + vmImage: windows-latest # This job is kept here as we want to have the platform names in the same file - - job: Release - displayName: Release - dependsOn: - - Linux - - macOS - - Windows - pool: - vmImage: macOS-latest - demands: node.js - steps: - - template: .ci/cross-release.yml + # - job: Release + # displayName: Release + # dependsOn: + # - Linux + # - macOS + # - Windows + # pool: + # vmImage: macOS-latest + # demands: node.js + # steps: + # - template: .ci/cross-release.yml diff --git a/bin/Pesy.re b/bin/Pesy.re index be5b1eeb..f6b788e3 100644 --- a/bin/Pesy.re +++ b/bin/Pesy.re @@ -16,7 +16,9 @@ module EnvVars = { let getManifestFile = projectRoot => { switch (EnvVars.rootPackageConfigPath) { | Some(x) => x - | None => Path.(projectRoot / "package.json") + | None => { + Path.(projectRoot / "package.json") + } }; };