Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

debug #238

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

debug #238

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .ci/utils/use-esy.yml
Original file line number Diff line number Diff line change
@@ -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')
40 changes: 20 additions & 20 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
4 changes: 3 additions & 1 deletion bin/Pesy.re
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
};
};

Expand Down