-
Notifications
You must be signed in to change notification settings - Fork 39
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
34 changed files
with
1,480 additions
and
200 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 |
---|---|---|
|
@@ -37,13 +37,6 @@ common-steps: | |
echo "en_US UTF-8" >> /etc/locale.gen | ||
locale-gen | ||
- &client_install_build_dependencies | ||
run: | ||
name: Install build dependencies | ||
command: | | ||
set -e | ||
apt update && apt install -y git make sudo | ||
- &client_run_unit_tests | ||
run: | ||
name: Install requirements and run unit tests | ||
|
@@ -106,41 +99,6 @@ common-steps: | |
set -e | ||
make -C client safety | ||
- &client_install_packaging_dependencies | ||
run: | ||
name: Install Debian packaging dependencies and download Python wheels | ||
command: | | ||
set -x | ||
mkdir ~/packaging && cd ~/packaging | ||
# local builds may not have an ssh url, so || true | ||
git config --global --unset url.ssh://[email protected] || true | ||
git clone https://github.com/freedomofpress/securedrop-builder.git | ||
cd securedrop-builder | ||
apt-get update && apt-get install -y sudo make | ||
make install-deps | ||
source .venv/bin/activate | ||
PKG_DIR=~/project/client make requirements | ||
- &client_check_packaging_requirements | ||
run: | ||
name: Ensure that the same Python requirements are used for packaging and production. | ||
command: | | ||
cd ~/project/client | ||
# Fail if unstaged changes exist that are not comments (after `make requirements` in the previous run step). | ||
git diff --ignore-matching-lines=# --exit-code | ||
- &client_build_debian_package | ||
run: | ||
name: Build debian package | ||
command: | | ||
cd ~/project/client | ||
./update_version.sh 1000.0 # Dummy version number, doesn't matter what we put here | ||
cd ~/packaging/securedrop-builder | ||
export PKG_VERSION=1000.0 | ||
export PKG_PATH=~/project/client | ||
source .venv/bin/activate | ||
make securedrop-client | ||
- &export_install_poetry | ||
run: | ||
name: Install Poetry | ||
|
@@ -167,12 +125,6 @@ common-steps: | |
cd export | ||
poetry install --no-ansi | ||
- &export_install_build_dependencies | ||
run: | ||
name: Install build dependencies | ||
command: | | ||
apt update && apt install -y git make sudo | ||
- &export_run_unit_tests | ||
run: | ||
name: Install requirements and run unit tests | ||
|
@@ -199,38 +151,6 @@ common-steps: | |
command: | | ||
make -C export safety | ||
- &export_install_packaging_dependencies | ||
run: | ||
name: Install Debian packaging dependencies and download Python wheels | ||
command: | | ||
set -x | ||
mkdir ~/packaging && cd ~/packaging | ||
# local builds may not have an ssh url, so || true | ||
git config --global --unset url.ssh://[email protected] || true | ||
git clone https://github.com/freedomofpress/securedrop-builder.git | ||
cd securedrop-builder | ||
make install-deps | ||
source .venv/bin/activate | ||
PKG_DIR=~/project/export make requirements | ||
- &export_check_packaging_requirements | ||
run: | ||
name: Ensure that the same Python requirements are used for packaging and production. | ||
command: | | ||
cd ~/project/export | ||
# Fail if unstaged changes exist (after `make requirements` in the previous run step). | ||
git diff --ignore-matching-lines=# --exit-code | ||
- &export_build_debian_package | ||
run: | ||
name: Build debian package | ||
command: | | ||
cd ~/packaging/securedrop-builder | ||
export PKG_VERSION=1000.0 | ||
export PKG_PATH=~/project/export | ||
source .venv/bin/activate | ||
make securedrop-export | ||
- &log_install_poetry | ||
run: | ||
name: Install Poetry | ||
|
@@ -263,37 +183,6 @@ common-steps: | |
command: | | ||
make -C log check | ||
- &log_install_packaging_dependencies | ||
run: | ||
name: Install Debian packaging dependencies and download wheels | ||
command: | | ||
apt-get update && apt-get install -y git git-lfs make sudo | ||
mkdir ~/packaging && cd ~/packaging | ||
git clone https://github.com/freedomofpress/securedrop-builder.git | ||
cd securedrop-builder | ||
make install-deps | ||
source .venv/bin/activate | ||
PKG_DIR=~/project/log make requirements | ||
- &log_verify_requirements | ||
run: | ||
name: Ensure that build-requirements.txt and requirements.txt are in sync. | ||
command: | | ||
cd ~/project/log | ||
# Return 1 if unstaged changes exist (after `make requirements` in the | ||
# previous run step), else return 0. | ||
git diff --quiet | ||
- &log_build_debian_package | ||
run: | ||
name: Build debian package | ||
command: | | ||
cd ~/packaging/securedrop-builder | ||
export PKG_VERSION=1000.0 | ||
export PKG_PATH=~/project/log | ||
source .venv/bin/activate | ||
make securedrop-log | ||
- &proxy_install_poetry | ||
run: | ||
name: Install Poetry | ||
|
@@ -320,13 +209,6 @@ common-steps: | |
cd proxy | ||
poetry install --no-ansi | ||
- &proxy_install_build_dependencies | ||
run: | ||
name: Install build dependencies | ||
command: | | ||
set -e | ||
apt-get update && apt-get install --yes git make sudo | ||
- &proxy_run_unit_tests | ||
run: | ||
name: Install requirements and run unit tests | ||
|
@@ -359,60 +241,15 @@ common-steps: | |
poetry update safety | ||
make safety | ||
- &proxy_install_packaging_dependencies | ||
run: | ||
name: Install Debian packaging dependencies and download Python wheels | ||
command: | | ||
set -x | ||
mkdir ~/packaging && cd ~/packaging | ||
# local builds may not have an ssh url, so || true | ||
git config --global --unset url.ssh://[email protected] || true | ||
git clone https://github.com/freedomofpress/securedrop-builder.git | ||
cd securedrop-builder | ||
apt-get update && apt-get install -y sudo make | ||
make install-deps | ||
source .venv/bin/activate | ||
PKG_DIR=~/project/proxy make requirements | ||
- &proxy_verify_requirements | ||
run: | ||
name: Ensure that build-requirements.txt and requirements.txt are in sync. | ||
command: | | ||
cd ~/project/proxy | ||
# Return 1 if unstaged changes exist (after `make requirements` in the | ||
# previous run step), else return 0. | ||
git diff --quiet | ||
- &proxy_build_debian_package | ||
run: | ||
name: Build debian package | ||
command: | | ||
cd ~/packaging/securedrop-builder | ||
export PKG_VERSION=1000.0 | ||
export PKG_PATH=~/project/proxy | ||
source .venv/bin/activate | ||
make securedrop-proxy | ||
version: 2.1 | ||
|
||
jobs: | ||
client_build: | ||
client_unit-test: | ||
parameters: ¶meters | ||
image: | ||
type: string | ||
docker: &docker | ||
- image: debian:<< parameters.image >> | ||
steps: | ||
- *client_install_build_dependencies | ||
- checkout | ||
- *client_install_packaging_dependencies | ||
- *client_check_packaging_requirements | ||
- *client_build_debian_package | ||
|
||
client_unit-test: | ||
parameters: *parameters | ||
docker: *docker | ||
steps: | ||
- *client_install_poetry | ||
- checkout | ||
|
@@ -478,16 +315,6 @@ jobs: | |
- *client_check_source_strings | ||
- *client_check_mo_repro | ||
|
||
export_build: | ||
parameters: *parameters | ||
docker: *docker | ||
steps: | ||
- *export_install_build_dependencies | ||
- checkout | ||
- *export_install_packaging_dependencies | ||
- *export_check_packaging_requirements | ||
- *export_build_debian_package | ||
|
||
export_unit-test: | ||
parameters: *parameters | ||
docker: *docker | ||
|
@@ -535,25 +362,6 @@ jobs: | |
- *log_install_testing_dependencies | ||
- *log_run_tests | ||
|
||
log_build-bullseye: | ||
docker: | ||
- image: debian:bullseye | ||
steps: | ||
- checkout | ||
- *log_install_packaging_dependencies | ||
- *log_verify_requirements | ||
- *log_build_debian_package | ||
|
||
proxy_build: | ||
parameters: *parameters | ||
docker: *docker | ||
steps: | ||
- checkout | ||
- *proxy_install_build_dependencies | ||
- *proxy_install_packaging_dependencies | ||
- *proxy_verify_requirements | ||
- *proxy_build_debian_package | ||
|
||
proxy_unit-test: | ||
parameters: *parameters | ||
docker: *docker | ||
|
@@ -614,8 +422,6 @@ workflows: | |
matrix: *matrix | ||
- client_check-internationalization: | ||
matrix: *matrix | ||
- client_build: | ||
matrix: *matrix | ||
|
||
securedrop_export_ci: | ||
jobs: &export_jobs | ||
|
@@ -627,13 +433,10 @@ workflows: | |
matrix: *matrix | ||
- export_check-python-security: | ||
matrix: *matrix | ||
- export_build: | ||
matrix: *matrix | ||
|
||
securedrop_log_ci: | ||
jobs: | ||
- log_test-bullseye | ||
- log_build-bullseye | ||
|
||
securedrop_proxy_ci: | ||
jobs: &proxy_jobs | ||
|
@@ -645,8 +448,6 @@ workflows: | |
matrix: *matrix | ||
- proxy_check-python-security: | ||
matrix: *matrix | ||
- proxy_build: | ||
matrix: *matrix | ||
|
||
client_nightly: | ||
triggers: | ||
|
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,62 @@ | ||
name: Package builds | ||
on: [push, pull_request] | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
verify-builder-sync: | ||
runs-on: ubuntu-latest | ||
container: debian:bullseye | ||
steps: | ||
- run: | | ||
apt-get update && apt-get install --yes git git-lfs sudo make | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: "freedomofpress/securedrop-builder" | ||
path: "securedrop-builder" | ||
lfs: true | ||
- name: Install dependencies | ||
run: | | ||
cd securedrop-builder | ||
make install-deps | ||
- name: Check differences | ||
run: | | ||
source ./securedrop-builder/.venv/bin/activate | ||
PKG_DIR=../client make -C securedrop-builder requirements | ||
PKG_DIR=../export make -C securedrop-builder requirements | ||
PKG_DIR=../log make -C securedrop-builder requirements | ||
PKG_DIR=../proxy make -C securedrop-builder requirements | ||
ls -al | ||
git diff --ignore-matching-lines=# --exit-code | ||
build-debs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: "freedomofpress/securedrop-builder" | ||
path: "securedrop-builder" | ||
lfs: true | ||
- name: Build bullseye packages | ||
run: | | ||
DEBIAN_VERSION=bullseye BUILDER=securedrop-builder ./scripts/build-debs.sh | ||
mv build build-bullseye | ||
- name: Build bookworm packages | ||
run: | | ||
DEBIAN_VERSION=bookworm BUILDER=securedrop-builder ./scripts/build-debs.sh | ||
mv build build-bookworm | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: build-bullseye | ||
path: build-bullseye | ||
if-no-files-found: error | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: build-bookworm | ||
path: build-bookworm | ||
if-no-files-found: error |
Oops, something went wrong.