应该在ci源。
应该在ci源。
Repository-Integration 指的是这个仓库吗?我在它的 workflow 目录下面找到 iso.yaml,是镜像构建相关的。iso.yaml 安装了 jenkins client 客户端然后触发构建,不过我其实是想找 jenkins 服务端的构建脚本(还没找到😥 )
# iso.yaml
# 主要是安装 jenkins client 并触发 iso 构建
jobs:
iso-build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: ["amd"]
env:
GITHUB_TOKEN: ${{ github.token }}
BRIDGE_TOKEN: ${{ secrets.BRIDGETOKEN }}
steps:
- uses: actions/checkout@v2
with:
repository: "linuxdeepin/jenkins-bridge-client"
path: jenkins-bridge-client
- name: Install Client
run: |
cd $GITHUB_WORKSPACE/jenkins-bridge-client
go build .
sudo install -Dvm755 jenkins-bridge-client -t /usr/bin/
- name: Trigger build
id: generate-runid
run: |
echo "::set-output name=RUN_ID::$(jenkins-bridge-client triggerISOBuild --token $BRIDGE_TOKEN --arch ${{ matrix.arch }})"
- name: Print log
run: |
jenkins-bridge-client printLog --token "$BRIDGE_TOKEN" --runid "${{ steps.generate-runid.outputs.RUN_ID }}"
- name: cancelled
if: ${{ cancelled() }}
run: |
jenkins-bridge-client cancelBuild --token "$BRIDGE_TOKEN" --runid "${{ steps.generate-runid.outputs.RUN_ID }}"
Repository-Integration 指的是这个仓库吗?我在它的 workflow 目录下面找到 iso.yaml,是镜像构建相关的。iso.yaml 安装了 jenkins client 客户端然后触发构建,不过我其实是想找 jenkins 服务端的构建脚本(还没找到😥 )
# iso.yaml
# 主要是安装 jenkins client 并触发 iso 构建
jobs:
iso-build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: ["amd"]
env:
GITHUB_TOKEN: ${{ github.token }}
BRIDGE_TOKEN: ${{ secrets.BRIDGETOKEN }}
steps:
- uses: actions/checkout@v2
with:
repository: "linuxdeepin/jenkins-bridge-client"
path: jenkins-bridge-client
- name: Install Client
run: |
cd $GITHUB_WORKSPACE/jenkins-bridge-client
go build .
sudo install -Dvm755 jenkins-bridge-client -t /usr/bin/
- name: Trigger build
id: generate-runid
run: |
echo "::set-output name=RUN_ID::$(jenkins-bridge-client triggerISOBuild --token $BRIDGE_TOKEN --arch ${{ matrix.arch }})"
- name: Print log
run: |
jenkins-bridge-client printLog --token "$BRIDGE_TOKEN" --runid "${{ steps.generate-runid.outputs.RUN_ID }}"
- name: cancelled
if: ${{ cancelled() }}
run: |
jenkins-bridge-client cancelBuild --token "$BRIDGE_TOKEN" --runid "${{ steps.generate-runid.outputs.RUN_ID }}"
并不是所有东西都开源的
并不是所有东西都开源的
明白了
Repository-Integration 指的是这个仓库吗?我在它的 workflow 目录下面找到 iso.yaml,是镜像构建相关的。iso.yaml 安装了 jenkins client 客户端然后触发构建,不过我其实是想找 jenkins 服务端的构建脚本(还没找到😥 )
# iso.yaml
# 主要是安装 jenkins client 并触发 iso 构建
jobs:
iso-build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: ["amd"]
env:
GITHUB_TOKEN: ${{ github.token }}
BRIDGE_TOKEN: ${{ secrets.BRIDGETOKEN }}
steps:
- uses: actions/checkout@v2
with:
repository: "linuxdeepin/jenkins-bridge-client"
path: jenkins-bridge-client
- name: Install Client
run: |
cd $GITHUB_WORKSPACE/jenkins-bridge-client
go build .
sudo install -Dvm755 jenkins-bridge-client -t /usr/bin/
- name: Trigger build
id: generate-runid
run: |
echo "::set-output name=RUN_ID::$(jenkins-bridge-client triggerISOBuild --token $BRIDGE_TOKEN --arch ${{ matrix.arch }})"
- name: Print log
run: |
jenkins-bridge-client printLog --token "$BRIDGE_TOKEN" --runid "${{ steps.generate-runid.outputs.RUN_ID }}"
- name: cancelled
if: ${{ cancelled() }}
run: |
jenkins-bridge-client cancelBuild --token "$BRIDGE_TOKEN" --runid "${{ steps.generate-runid.outputs.RUN_ID }}"
我倒是找到了这么些文件,不知道是不是iso构成脚本,你可以看看:https://cdimage.deepin.com/daily/有些文件夹里有名为“iso_build_sources.txt”的文件。
我倒是找到了这么些文件,不知道是不是iso构成脚本,你可以看看:https://cdimage.deepin.com/daily/有些文件夹里有名为“iso_build_sources.txt”的文件。
好的,感谢😁
ISO构建脚本没有开源
如果想自己构建的话,可以试试使用 https://salsa.debian.org/live-team/live-build
ISO构建脚本没有开源
如果想自己构建的话,可以试试使用 https://salsa.debian.org/live-team/live-build
好的,我试试看👍
我在学习linux发行相关的知识,想看看 deepin 在软件打包、iso 镜像构建方面是怎么做的 😄
不过 github 上 deepin 的仓库太多了,找对应的代码仓库很不容易。。。
目前看下来,软件打包是通过 open build service 来做的,但是 iso 镜像构建的仓库只找到了 jenkins-bridge-client 客户端代码
有人知道具体的构建脚本在哪个仓库里吗 😂