Build all version on all OS
Some checks failed
Build PHP PDO SQLCipher packages / php7.4 on debian-12-bookworm (push) Successful in 4m30s
Build PHP PDO SQLCipher packages / php8.1 on debian-12-bookworm (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.0 on debian-12-bookworm (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.2 on debian-12-bookworm (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.3 on debian-12-bookworm (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.4 on debian-12-bookworm (push) Has been cancelled
Build PHP PDO SQLCipher packages / php7.4 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.0 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.1 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.2 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.3 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.4 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php7.4 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.0 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.1 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.2 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.3 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.4 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php7.4 on ubuntu-24.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.0 on ubuntu-24.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.1 on ubuntu-24.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.2 on ubuntu-24.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.3 on ubuntu-24.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.4 on ubuntu-24.04 (push) Has been cancelled
Some checks failed
Build PHP PDO SQLCipher packages / php7.4 on debian-12-bookworm (push) Successful in 4m30s
Build PHP PDO SQLCipher packages / php8.1 on debian-12-bookworm (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.0 on debian-12-bookworm (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.2 on debian-12-bookworm (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.3 on debian-12-bookworm (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.4 on debian-12-bookworm (push) Has been cancelled
Build PHP PDO SQLCipher packages / php7.4 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.0 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.1 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.2 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.3 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.4 on debian-13-trixie (push) Has been cancelled
Build PHP PDO SQLCipher packages / php7.4 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.0 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.1 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.2 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.3 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.4 on ubuntu-22.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php7.4 on ubuntu-24.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.0 on ubuntu-24.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.1 on ubuntu-24.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.2 on ubuntu-24.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.3 on ubuntu-24.04 (push) Has been cancelled
Build PHP PDO SQLCipher packages / php8.4 on ubuntu-24.04 (push) Has been cancelled
This commit is contained in:
parent
48a5b6d53f
commit
5bb2b7e84d
3 changed files with 13 additions and 69 deletions
|
|
@ -1,32 +0,0 @@
|
||||||
name: CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-deb:
|
|
||||||
runs-on: docker
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
php-version: '8.2'
|
|
||||||
sqlcipher-version: '4.12.0'
|
|
||||||
tz: 'UTC'
|
|
||||||
|
|
||||||
- name: Notify on failure
|
|
||||||
if: ${{ failure() }}
|
|
||||||
env:
|
|
||||||
WEBHOOK_URL: ${{ secrets.NODERED_WEBHOOK_URL }}
|
|
||||||
REPOSITORY: ${{ forgejo.repository }}
|
|
||||||
RUN_NUMBER: ${{ forgejo.run_number }}
|
|
||||||
SERVER_URL: ${{ forgejo.server_url }}
|
|
||||||
run: |
|
|
||||||
curl -X POST \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-d "{\"repository\":\"$REPOSITORY\",\"run_number\":\"$RUN_NUMBER\",\"status\":\"failure\",\"url\":\"$SERVER_URL/$REPOSITORY/actions/runs/$RUN_NUMBER\"}" \
|
|
||||||
"$WEBHOOK_URL"
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
||||||
name: CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-deb:
|
|
||||||
runs-on: docker
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
php-version: '8.4'
|
|
||||||
sqlcipher-version: '4.12.0'
|
|
||||||
tz: 'UTC'
|
|
||||||
|
|
||||||
- name: Notify on failure
|
|
||||||
if: ${{ failure() }}
|
|
||||||
env:
|
|
||||||
WEBHOOK_URL: ${{ secrets.NODERED_WEBHOOK_URL }}
|
|
||||||
REPOSITORY: ${{ forgejo.repository }}
|
|
||||||
RUN_NUMBER: ${{ forgejo.run_number }}
|
|
||||||
SERVER_URL: ${{ forgejo.server_url }}
|
|
||||||
run: |
|
|
||||||
curl -X POST \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-d "{\"repository\":\"$REPOSITORY\",\"run_number\":\"$RUN_NUMBER\",\"status\":\"failure\",\"url\":\"$SERVER_URL/$REPOSITORY/actions/runs/$RUN_NUMBER\"}" \
|
|
||||||
"$WEBHOOK_URL"
|
|
||||||
|
|
@ -1,20 +1,28 @@
|
||||||
name: CI
|
name: Build PHP PDO SQLCipher packages
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-deb:
|
build-debs:
|
||||||
runs-on: docker
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [debian-13-trixie, debian-12-bookworm, ubuntu-22.04, ubuntu-24.04]
|
||||||
|
php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
|
||||||
|
|
||||||
|
name: php${{ matrix.php }} on ${{ matrix.os }}
|
||||||
|
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Build
|
- name: Build Debian package
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
php-version: '7.4'
|
php-version: ${{ matrix.php }}
|
||||||
sqlcipher-version: '4.12.0'
|
sqlcipher-version: '4.12.0'
|
||||||
tz: 'UTC'
|
tz: 'UTC'
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue