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

ci: switch test to macos #28142

Merged
merged 2 commits into from
Dec 8, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -432,13 +432,13 @@ exports[`generator - github-build-matrix with devserver should match matrix valu
{
"job-name": "ng-default-esbuild",
"sample": "samples/ng-default",
"os": "ubuntu-latest",
"os": "macos-latest",
"node-version": "NODE-VERSION",
"java-version": "JAVA-VERSION",
"npm-version": "NPM-VERSION",
"default-environment": "prod",
"jwt-secret-key": "ZjY4MTM4YjI5YzMwZjhjYjI2OTNkNTRjMWQ5Y2Q0Y2YwOWNmZTE2NzRmYzU3NTMwM2NjOTE3MTllOTM3MWRkMzcyYTljMjVmNmQ0Y2MxOTUzODc0MDhhMTlkMDIxMzI2YzQzZDM2ZDE3MmQ3NjVkODk3OTVmYzljYTQyZDNmMTQ=",
"args": "--sample-yorc-folder --entities-sample sqllight"
"args": "--sample-yorc-folder --entities-sample sqllight --client-bundler experimentalEsbuild"
},
{
"job-name": "ng-default-webpack",
Expand All @@ -454,7 +454,7 @@ exports[`generator - github-build-matrix with devserver should match matrix valu
{
"job-name": "react-default",
"sample": "samples/react-default",
"os": "ubuntu-latest",
"os": "macos-latest",
"node-version": "NODE-VERSION",
"java-version": "JAVA-VERSION",
"npm-version": "NPM-VERSION",
Expand Down
4 changes: 3 additions & 1 deletion .blueprint/github-build-matrix/samples/dev-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ export const devServerMatrix = {
angular: {
'ng-default-esbuild': {
sample: 'samples/ng-default',
args: '--sample-yorc-folder --entities-sample sqllight',
args: '--sample-yorc-folder --entities-sample sqllight --client-bundler experimentalEsbuild',
os: 'macos-latest',
},
'ng-default-webpack': {
sample: 'samples/ng-default',
Expand All @@ -15,6 +16,7 @@ export const devServerMatrix = {
'react-default': {
sample: 'samples/react-default',
args: '--sample-yorc-folder --entities-sample sqllight',
os: 'macos-latest',
},
},
vue: {
Expand Down
Loading