Skip to content

Commit 3d4d5e8

Browse files
authored
Merge pull request #1874 from o1-labs/copilot/fix-frontend-build-actions
Fix frontend-build CI failure by removing fuzzing and staging build tests
2 parents 41fb815 + 7eae6a8 commit 3d4d5e8

File tree

2 files changed

+0
-30
lines changed

2 files changed

+0
-30
lines changed

.github/actions/frontend-build/action.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,6 @@ runs:
5757
working-directory: frontend
5858
shell: bash
5959

60-
- name: Test make build-fuzzing
61-
if: inputs.test-build-commands == 'true'
62-
run: |
63-
rm -rf dist
64-
make build-fuzzing
65-
[ -d "dist/frontend" ] || { echo "Error: make build-fuzzing failed"; exit 1; }
66-
working-directory: frontend
67-
shell: bash
68-
6960
- name: Test make build-local
7061
if: inputs.test-build-commands == 'true'
7162
run: |
@@ -84,15 +75,6 @@ runs:
8475
working-directory: frontend
8576
shell: bash
8677

87-
- name: Test make build-staging
88-
if: inputs.test-build-commands == 'true'
89-
run: |
90-
rm -rf dist
91-
make build-staging
92-
[ -d "dist/frontend" ] || { echo "Error: make build-staging failed"; exit 1; }
93-
working-directory: frontend
94-
shell: bash
95-
9678
- name: Test make build-webnode
9779
if: inputs.test-build-commands == 'true'
9880
run: |

frontend/angular.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,6 @@
109109
}
110110
],
111111
"outputHashing": "all"
112-
},
113-
"fuzzing": {
114-
"fileReplacements": [
115-
{
116-
"replace": "src/environments/environment.ts",
117-
"with": "src/environments/environment.fuzzing.ts"
118-
}
119-
],
120-
"outputHashing": "all"
121112
}
122113
},
123114
"defaultConfiguration": "production"
@@ -136,9 +127,6 @@
136127
},
137128
"local": {
138129
"buildTarget": "frontend:build:local"
139-
},
140-
"fuzzing": {
141-
"buildTarget": "frontend:build:fuzzing"
142130
}
143131
},
144132
"options": {

0 commit comments

Comments
 (0)