mirror of https://github.com/trapexit/mergerfs.git
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 2 additions and 203 deletions
-
150.cirrus.yml
-
42.github/workflows/codeql.yml
-
13.github/workflows/mkdocs.yml
-
0mkdocs/generate-and-push-docs
@ -1,150 +0,0 @@ |
|||||
linux_task: |
|
||||
name: "alpine:latest" |
|
||||
container: |
|
||||
image: alpine:latest |
|
||||
cpu: 4 |
|
||||
memory: 4G |
|
||||
timeout_in: 15m |
|
||||
script: |
|
||||
- buildtools/install-build-pkgs |
|
||||
- make STATIC=1 LTO=1 |
|
||||
|
|
||||
linux_task: |
|
||||
name: "alpine-arm:latest" |
|
||||
arm_container: |
|
||||
image: alpine:latest |
|
||||
cpu: 4 |
|
||||
memory: 4G |
|
||||
timeout_in: 15m |
|
||||
script: |
|
||||
- buildtools/install-build-pkgs |
|
||||
- make STATIC=1 LTO=1 |
|
||||
|
|
||||
linux_task: |
|
||||
name: "fedora:41" |
|
||||
container: |
|
||||
image: fedora:41 |
|
||||
cpu: 4 |
|
||||
memory: 4G |
|
||||
timeout_in: 15m |
|
||||
script: |
|
||||
- buildtools/install-build-pkgs |
|
||||
- make |
|
||||
- make rpm |
|
||||
|
|
||||
linux_task: |
|
||||
name: "fedora-arm:41" |
|
||||
arm_container: |
|
||||
image: fedora:41 |
|
||||
cpu: 4 |
|
||||
memory: 4G |
|
||||
timeout_in: 15m |
|
||||
script: |
|
||||
- buildtools/install-build-pkgs |
|
||||
- make |
|
||||
- make rpm |
|
||||
|
|
||||
linux_task: |
|
||||
name: "ubuntu:22.04" |
|
||||
container: |
|
||||
image: ubuntu:22.04 |
|
||||
cpu: 4 |
|
||||
memory: 4G |
|
||||
timeout_in: 15m |
|
||||
script: |
|
||||
- buildtools/install-build-pkgs |
|
||||
- git fetch |
|
||||
- make deb |
|
||||
- apt-get -y install fuse |
|
||||
- dpkg -i ../*.deb |
|
||||
- mergerfs -v || true |
|
||||
|
|
||||
linux_task: |
|
||||
name: "ubuntu:24.04" |
|
||||
container: |
|
||||
image: ubuntu:24.04 |
|
||||
cpu: 4 |
|
||||
memory: 4G |
|
||||
timeout_in: 15m |
|
||||
script: |
|
||||
- buildtools/install-build-pkgs |
|
||||
- git fetch |
|
||||
- make deb |
|
||||
- apt-get -y install fuse |
|
||||
- dpkg -i ../*.deb |
|
||||
- mergerfs -v || true |
|
||||
|
|
||||
linux_task: |
|
||||
name: "ubuntu:latest" |
|
||||
container: |
|
||||
image: ubuntu:latest |
|
||||
cpu: 4 |
|
||||
memory: 4G |
|
||||
timeout_in: 15m |
|
||||
script: |
|
||||
- buildtools/install-build-pkgs |
|
||||
- git fetch |
|
||||
- make deb |
|
||||
- apt-get -y install fuse |
|
||||
- dpkg -i ../*.deb |
|
||||
- mergerfs -v || true |
|
||||
|
|
||||
linux_task: |
|
||||
name: "ubuntu-arm:latest" |
|
||||
arm_container: |
|
||||
image: ubuntu:latest |
|
||||
cpu: 4 |
|
||||
memory: 4G |
|
||||
timeout_in: 15m |
|
||||
script: |
|
||||
- buildtools/install-build-pkgs |
|
||||
- git fetch |
|
||||
- make deb |
|
||||
- apt-get -y install fuse |
|
||||
- dpkg -i ../*.deb |
|
||||
- mergerfs -v || true |
|
||||
|
|
||||
linux_task: |
|
||||
name: "debian:12" |
|
||||
container: |
|
||||
image: debian:12 |
|
||||
cpu: 4 |
|
||||
memory: 4G |
|
||||
timeout_in: 15m |
|
||||
script: |
|
||||
- buildtools/install-build-pkgs |
|
||||
- git fetch |
|
||||
- make deb |
|
||||
- apt-get -y install fuse |
|
||||
- dpkg -i ../*.deb |
|
||||
- mergerfs -v || true |
|
||||
|
|
||||
linux_task: |
|
||||
name: "debian:latest" |
|
||||
container: |
|
||||
image: debian:latest |
|
||||
cpu: 4 |
|
||||
memory: 4G |
|
||||
timeout_in: 15m |
|
||||
script: |
|
||||
- buildtools/install-build-pkgs |
|
||||
- git fetch |
|
||||
- make deb |
|
||||
- apt-get -y install fuse |
|
||||
- dpkg -i ../*.deb |
|
||||
- mergerfs -v || true |
|
||||
|
|
||||
linux_task: |
|
||||
name: "debian-arm:latest" |
|
||||
arm_container: |
|
||||
image: debian:latest |
|
||||
cpu: 4 |
|
||||
memory: 4G |
|
||||
timeout_in: 15m |
|
||||
script: |
|
||||
- buildtools/install-build-pkgs |
|
||||
- git fetch |
|
||||
- make deb |
|
||||
- apt-get -y install fuse |
|
||||
- dpkg -i ../*.deb |
|
||||
- mergerfs -v || true |
|
||||
@ -1,42 +0,0 @@ |
|||||
name: "CodeQL" |
|
||||
|
|
||||
on: |
|
||||
push: |
|
||||
branches: [ "master" ] |
|
||||
pull_request: |
|
||||
branches: [ "master" ] |
|
||||
schedule: |
|
||||
- cron: "7 3 * * 6" |
|
||||
|
|
||||
jobs: |
|
||||
analyze: |
|
||||
name: Analyze |
|
||||
runs-on: ubuntu-latest |
|
||||
permissions: |
|
||||
actions: read |
|
||||
contents: read |
|
||||
security-events: write |
|
||||
|
|
||||
strategy: |
|
||||
fail-fast: false |
|
||||
matrix: |
|
||||
language: [ python, cpp ] |
|
||||
|
|
||||
steps: |
|
||||
- name: Checkout |
|
||||
uses: actions/checkout@v3 |
|
||||
|
|
||||
- name: Initialize CodeQL |
|
||||
uses: github/codeql-action/init@v2 |
|
||||
with: |
|
||||
languages: ${{ matrix.language }} |
|
||||
queries: +security-and-quality |
|
||||
|
|
||||
- name: Autobuild |
|
||||
uses: github/codeql-action/autobuild@v2 |
|
||||
if: ${{ matrix.language == 'python' || matrix.language == 'cpp' }} |
|
||||
|
|
||||
- name: Perform CodeQL Analysis |
|
||||
uses: github/codeql-action/analyze@v2 |
|
||||
with: |
|
||||
category: "/language:${{ matrix.language }}" |
|
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue