-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
90 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: Nightlies | ||
on: | ||
push: | ||
# schedule: | ||
# - cron: "0 0 * * *" | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
build-debs: | ||
strategy: | ||
matrix: | ||
debian_version: | ||
- bullseye | ||
- bookworm | ||
runs-on: ubuntu-latest | ||
outputs: | ||
artifact_id: ${{ steps.upload.outputs.artifact-id }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: "freedomofpress/securedrop-builder" | ||
path: "securedrop-builder" | ||
lfs: true | ||
- name: Build packages | ||
run: | | ||
git config --global --add safe.directory '*' | ||
NIGHTLY=1 DEBIAN_VERSION=${{ matrix.debian_version }} BUILDER=securedrop-builder \ | ||
./scripts/build-debs.sh | ||
- uses: actions/upload-artifact@v4 | ||
id: upload | ||
with: | ||
name: build-${{ matrix.debian_version }} | ||
path: build | ||
if-no-files-found: error | ||
|
||
commit-and-push: | ||
runs-on: ubuntu-latest | ||
container: debian:bookworm | ||
needs: | ||
- build-debs | ||
steps: | ||
- name: Install dependencies | ||
run: | | ||
apt-get update && apt-get install --yes git git-lfs | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
pattern: "*${{ matrix.debian_version }}" | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: "freedomofpress/securedrop-apt-test" | ||
path: "securedrop-apt-test" | ||
lfs: true | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: "freedomofpress/build-logs" | ||
path: "build-logs" | ||
- name: Commit and push | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "sdcibot" | ||
# First publish buildinfo files | ||
cd build-logs | ||
mkdir -p "buildinfo/$(date +%Y)" | ||
cp -v ../build-*/*.buildinfo "buildinfo/$(date +%Y)" | ||
git add . | ||
git diff-index --quiet HEAD || git commit -m "Publishing buildinfo files for workstation nightlies" | ||
# git push origin main | ||
# Now the packages themselves | ||
cd ../securedrop-apt-test | ||
cp -v ../build-bullseye/*.deb workstation/bullseye-nightlies/ | ||
cp -v ../build-bookworm/*.deb workstation/bookworm-nightlies/ | ||
git add . | ||
git diff-index --quiet HEAD || git commit -m "Automated SecureDrop workstation build" | ||
# git push origin main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters