Skip to content

Commit 22bcb85

Browse files
committed
Issue#83: Disable workflows that is too hard to run on github acitons
1 parent 57b0927 commit 22bcb85

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/build_pass.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
name: Build passes check
2-
on: [ push ]
3-
2+
# Disabled for push for now.
3+
# Re-enable when github actions has good image for build environment. (Issue#83)
4+
#on: [ push ]
5+
on: workflow_dispatch
46
concurrency:
57
group: "continuous_test"
68
cancel-in-progress: true
79

810
jobs:
911
build-check:
1012
name: Build check
11-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1214
steps:
1315
- name: checkout
1416
uses: actions/checkout@v3

.github/workflows/release.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
name: Release x86_64 deb artifact on release published
2-
on:
3-
release:
4-
types:
5-
- published
2+
# Disabled for release for now.
3+
# Re-enable when github actions has good image for build. (Issue#83)
4+
#on:
5+
# release:
6+
# types:
7+
# - published
8+
on: workflow_dispatch
9+
610
jobs:
711
Build:
8-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
913
# strategy:
1014
# matrix:
1115
# cskk_ver: [0.8.1]

0 commit comments

Comments
 (0)