Skip to content

Commit

Permalink
add bookworm
Browse files Browse the repository at this point in the history
  • Loading branch information
elysia-best committed Jun 3, 2024
1 parent 312e75c commit c7b719c
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defaults:
shell: 'bash -Eeuo pipefail -x {0}'

jobs:
build:
build-trixie:
runs-on: ubuntu-latest
container: docker.io/library/debian:trixie-slim
name: Build
Expand All @@ -35,7 +35,36 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: Lingmo Artifacts
name: Lingmo Artifacts trixie
path: BuildArtifacts
compression-level: 9 # maximum compression

build-bookworm:
runs-on: ubuntu-latest
container: docker.io/library/debian:bookworm-slim
name: Build
steps:
- uses: actions/checkout@v4

- name: Update Lingmo repo
run: |
apt-get update -y && apt-get upgrade -y && apt install -y apt-transport-https ca-certificates
echo "deb [trusted=yes] https://packages-lingmo.simplelinux.cn.eu.org/polaris polaris main contrib non-free" >> /etc/apt/sources.list.d/lingmo-rolling.list
apt update
- name: Update Apt and Install packages
run: |
apt-get update -y && apt-get upgrade -y
apt install -y powershell sudo equivs curl git devscripts lintian build-essential automake autotools-dev cmake g++ --no-install-recommends
- name: Build Lingmo
run: |
git config --global http.sslVerify false
pwsh ./build.ps1
- uses: actions/upload-artifact@v4
with:
name: Lingmo Artifacts bookworm
path: BuildArtifacts
compression-level: 9 # maximum compression

Expand Down

0 comments on commit c7b719c

Please sign in to comment.