Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Daily Build

on:
# run daily at 8:30am
schedule:
- cron: '30 8 * * *'
#schedule:
# - cron: '30 8 * * *'
# allow manual runs
workflow_dispatch:

Expand All @@ -17,7 +17,7 @@ permissions:
jobs:
build-daily:
# don't run cron from forks of the main repository or from other branches
if: github.repository == 'qualcomm-linux/qcom-deb-images' && github.ref == 'refs/heads/main'
if: github.repository == 'qualcomm-linux-stg/qcom-deb-images' && github.ref == 'refs/heads/main'
uses: ./.github/workflows/debos.yml

test-daily:
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/debos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ jobs:
disk-sdcard.img2 \
flash_qrb2210-*

- name: Upload private artifacts
uses: qualcomm-linux/upload-private-artifact-action@v1
id: upload_artifacts
with:
path: debos-artifacts
# - name: Upload private artifacts
# uses: qualcomm-linux/upload-private-artifact-action@v1
# id: upload_artifacts
# with:
# path: debos-artifacts

- name: Unpack rootfs to generate SBOM
run: mkdir -v rootfs && tar -C rootfs -xf rootfs.tar.gz
Expand Down Expand Up @@ -193,11 +193,11 @@ jobs:
mkdir -v sboms
cp -av rootfs-sbom.*.gz sboms

- name: Upload SBOMs as private artifacts
uses: qualcomm-linux/upload-private-artifact-action@v1
id: upload_sbom_artifacts
with:
path: sboms
# - name: Upload SBOMs as private artifacts
# uses: qualcomm-linux/upload-private-artifact-action@v1
# id: upload_sbom_artifacts
# with:
# path: sboms
- name: "Print output"
env:
build_url: ${{ steps.upload_artifacts.outputs.url }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build Linux kernel deb and debos image

on:
# run weekly on Monday at 8:30am
schedule:
- cron: '30 6 * * 1'
# allow manual runs
# schedule:
# - cron: '30 6 * * 1'
# # allow manual runs
workflow_dispatch:

# implicitely set all other permissions to none
Expand All @@ -29,7 +29,7 @@ concurrency:
jobs:
build-linux-deb:
# don't run cron from forks of the main repository or from other branches
if: github.repository == 'qualcomm-linux/qcom-deb-images' && github.ref == 'refs/heads/main'
if: github.repository == 'qualcomm-linux-stg/qcom-deb-images' && github.ref == 'refs/heads/main'
# for cross-builds
runs-on: [self-hosted, qcom-u2404, amd64]
# alternative for native builds, but overkill to do both
Expand Down Expand Up @@ -89,11 +89,11 @@ jobs:
# perhaps help NFS sync
sync

- name: Upload private artifacts
uses: qualcomm-linux/upload-private-artifact-action@v1
id: upload_artifacts
with:
path: artifacts
# - name: Upload private artifacts
# uses: qualcomm-linux/upload-private-artifact-action@v1
# id: upload_artifacts
# with:
# path: artifacts

debos-mainline-linux:
needs: build-linux-deb
Expand Down
Loading