Skip to content

Commit

Permalink
matrix in matrix?
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Feb 15, 2024
1 parent 87b6bdc commit ce83686
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,18 @@ jobs:
include:
- os: "macos-14"
arch: "arm64"
matrix:
node-version: [14,16,18,19,20]
- os: "ubuntu-latest"
arch: "arm64"
alpine: true
matrix:
node-version: [14,16,18,19,20]
- os: "ubuntu-latest"
arch: "amd64"
alpine: true
matrix:
node-version: [14,16,18,19,20]
exclude:
- os: "macos-14"
arch: "arm64"
Expand Down
1 change: 0 additions & 1 deletion src/can-deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ export class CanDeploy {

if (this.options.output === 'json') {
try {
console.log('saf', output);
const startIndex = output.findIndex((l: string | Buffer) =>
l.toString().startsWith('{')
);
Expand Down
4 changes: 2 additions & 2 deletions standalone/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ export function createConfig(location: string = process.cwd()): Config {
binaries: [
{
platform: 'win32',
binary: `pact-${PACT_STANDALONE_VERSION}-windows-x86_64.zip`,
binaryChecksum: `pact-${PACT_STANDALONE_VERSION}-windows-x86_64.zip${CHECKSUM_SUFFIX}`,
binary: `pact-${PACT_STANDALONE_VERSION}-windows-x86.zip`,
binaryChecksum: `pact-${PACT_STANDALONE_VERSION}-windows-x86.zip${CHECKSUM_SUFFIX}`,
folderName: `windows-x64-${PACT_STANDALONE_VERSION}`,
downloadLocation: PACT_BINARY_LOCATION,
},
Expand Down

0 comments on commit ce83686

Please sign in to comment.