Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
orbea
Tor
Commits
18a2191a
Commit
18a2191a
authored
2 years ago
by
Micah Elizabeth Scott
Browse files
Options
Downloads
Patches
Plain Diff
gitlab-ci: Try enabling GPL mode so we test hs_pow
Signed-off-by:
Micah Elizabeth Scott
<
beth@torproject.org
>
parent
2de98a7f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+10
-0
10 additions, 0 deletions
.gitlab-ci.yml
scripts/ci/ci-driver.sh
+5
-0
5 additions, 0 deletions
scripts/ci/ci-driver.sh
with
15 additions
and
0 deletions
.gitlab-ci.yml
+
10
−
0
View file @
18a2191a
...
...
@@ -211,6 +211,16 @@ debian-disable-relay:
script
:
-
./scripts/ci/ci-driver.sh
#####
# GPL licensed mode, enables pow module
debian-gpl
:
image
:
debian:buster
<<
:
*debian-template
variables
:
GPL
:
"
yes"
script
:
-
./scripts/ci/ci-driver.sh
#####
# NSS check on debian
debian-nss
:
...
...
This diff is collapsed.
Click to expand it.
scripts/ci/ci-driver.sh
+
5
−
0
View file @
18a2191a
...
...
@@ -37,6 +37,7 @@ ALL_BUGS_ARE_FATAL="${ALL_BUGS_ARE_FATAL:-no}"
DISABLE_DIRAUTH
=
"
${
DISABLE_DIRAUTH
:-
no
}
"
DISABLE_RELAY
=
"
${
DISABLE_RELAY
:-
no
}
"
NSS
=
"
${
NSS
:-
no
}
"
GPL
=
"
${
GPL
:-
no
}
"
# Options for which tests to run. All should be yes/no.
CHECK
=
"
${
CHECK
:-
yes
}
"
...
...
@@ -200,6 +201,7 @@ yes_or_no ALL_BUGS_ARE_FATAL
yes_or_no DISABLE_DIRAUTH
yes_or_no DISABLE_RELAY
yes_or_no NSS
yes_or_no GPL
yes_or_no RUN_STAGE_CONFIGURE
yes_or_no RUN_STAGE_BUILD
...
...
@@ -262,6 +264,9 @@ fi
if
[[
"
$NSS
"
==
"yes"
]]
;
then
configure_options+
=(
"--enable-nss"
)
fi
if
[[
"
$GPL
"
==
"yes"
]]
;
then
configure_options+
=(
"--enable-gpl"
)
fi
#############################################################################
# Tell the user about our versions of different tools and packages.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment