Skip to content

Commit 9ccad2b

Browse files
committed
ci: disable some architectures
1 parent 617fdb3 commit 9ccad2b

File tree

2 files changed

+21
-15
lines changed

2 files changed

+21
-15
lines changed

.goreleaser.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ builds:
2424
- arm64
2525
- ppc64le
2626
ignore:
27+
- goos: freebsd
28+
goarch: 386
29+
- goos: freebsd
30+
goarch: ppc64le
2731
- goos: darwin
2832
goarch: 386
2933
- goos: darwin

web/src/components/ProjectForm.vue

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,6 @@
2222
dense
2323
></v-text-field>
2424

25-
<v-checkbox
26-
v-model="item.alert"
27-
:label="$t('allowAlertsForThisProject')"
28-
data-testid="newProject-alert"
29-
></v-checkbox>
30-
31-
<v-text-field
32-
v-model="item.alert_chat"
33-
:label="$t('telegramChatIdOptional')"
34-
:disabled="formSaving"
35-
data-testid="newProject-tg"
36-
outlined
37-
dense
38-
></v-text-field>
39-
4025
<v-text-field
4126
v-model.number="item.max_parallel_tasks"
4227
:label="$t('maxNumberOfParallelTasksOptional')"
@@ -52,6 +37,23 @@
5237
dense
5338
></v-text-field>
5439

40+
<v-text-field
41+
v-model="item.alert_chat"
42+
:label="$t('telegramChatIdOptional')"
43+
:disabled="formSaving"
44+
data-testid="newProject-tg"
45+
outlined
46+
dense
47+
></v-text-field>
48+
49+
<v-checkbox
50+
v-model="item.alert"
51+
:label="$t('allowAlertsForThisProject')"
52+
data-testid="newProject-alert"
53+
></v-checkbox>
54+
55+
<v-btn color="white">Send test notification</v-btn>
56+
5557
<v-switch
5658
v-if="itemId === 'new'"
5759
v-model="item.demo"

0 commit comments

Comments
 (0)