Skip to content

Commit bd6e4d1

Browse files
committed
disable other build
1 parent 20d0b07 commit bd6e4d1

6 files changed

Lines changed: 12 additions & 5 deletions

File tree

.github/workflows/Build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ env:
1414

1515
jobs:
1616
build-linux:
17+
if: ${{ false }}
1718
runs-on: ubuntu-latest
1819
strategy:
1920
matrix:

.github/workflows/codeql.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66

77
jobs:
88
analyze:
9+
runs-on: ubuntu-latest
10+
911
permissions:
1012
security-events: write
1113
packages: read

.github/workflows/debian.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ env:
1212

1313
jobs:
1414
build-linux:
15+
if: ${{ false }}
1516
runs-on: ubuntu-latest
1617
strategy:
1718
matrix:

.github/workflows/docs-site.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ env:
2727
jobs:
2828
# Build job
2929
build:
30+
if: ${{ false }}
3031
runs-on: ubuntu-latest
3132
steps:
3233
- name: Checkout
@@ -39,7 +40,7 @@ jobs:
3940
with:
4041
path: docs-build-env.tar
4142
key: docs-docker-image-cache-${{ hashFiles('.github/workflows/Dockerfile.docs') }}
42-
43+
4344
- name: Build and save docker image
4445
if: steps.docker-image-cache.outputs.cache-hit != 'true'
4546
run: |
@@ -48,11 +49,11 @@ jobs:
4849
--cache-from=type=local,src=docs-build-img-cache
4950
docker tag docs-build-img docs-build-img-cache
5051
docker save docs-build-img-cache -o docs-build-env.tar
51-
52+
5253
- name: Load docker image from cache
5354
if: steps.docker-image-cache.outputs.cache-hit == 'true'
5455
run: docker load --input docs-build-env.tar
55-
56+
5657
- name: Start docker container
5758
run: |
5859
docker run -dt --name docs-build-container docs-build-img-cache
@@ -61,10 +62,10 @@ jobs:
6162
- name: Build site with Jekyll
6263
run: docker exec docs-build-container bash -c
6364
"cd /home/kitten/docs && bundle install && bundle exec jekyll build --baseurl ${{env.DOCS_SITE_BASE_URL}} --source /home/kitten/docs --destination /home/kitten/docs/_site --trace"
64-
65+
6566
- name: Prepare artifacts
6667
run: docker cp docs-build-container:/home/kitten/docs/_site $GITHUB_WORKSPACE/ && tree $GITHUB_WORKSPACE/_site
67-
68+
6869
- name: Upload artifact
6970
uses: actions/upload-pages-artifact@v3
7071
with:

.github/workflows/macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ env:
1010

1111
jobs:
1212
build-macos:
13+
if: ${{ false }}
1314
runs-on: ${{matrix.os}}-14
1415
strategy:
1516
matrix:

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ env:
1212

1313
jobs:
1414
build-linux:
15+
if: ${{ false }}
1516
runs-on: ubuntu-latest
1617
strategy:
1718
matrix:

0 commit comments

Comments
 (0)