Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tor-reproducer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
briar
tor-reproducer
Commits
9677b8bb
Verified
Commit
9677b8bb
authored
1 year ago
by
Sebastian
Browse files
Options
Downloads
Patches
Plain Diff
Verify macOS binaries, too
parent
69f57191
No related branches found
No related tags found
No related merge requests found
Pipeline
#14556
failed
1 year ago
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitlab-ci.yml
+8
-1
8 additions, 1 deletion
.gitlab-ci.yml
Dockerfile
+1
-0
1 addition, 0 deletions
Dockerfile
build_tor.py
+2
-0
2 additions, 0 deletions
build_tor.py
verify_tor.py
+1
-0
1 addition, 0 deletions
verify_tor.py
verify_tor_macos.py
+5
-0
5 additions, 0 deletions
verify_tor_macos.py
with
17 additions
and
1 deletion
.gitlab-ci.yml
+
8
−
1
View file @
9677b8bb
...
...
@@ -82,7 +82,7 @@ test_build_windows:
test_build_mac
:
extends
:
.base-mac
script
:
-
docker run --privileged -v `pwd`/output:/opt/tor-reproducer/output ${TEST_IMAGE} /bin/bash -c "./build_tor_macos.py"
-
docker run --privileged -v `pwd`/output:/opt/tor-reproducer/output ${TEST_IMAGE} /bin/bash -c "./build_tor_macos.py
&& ./verify_tor_macos.py
"
allow_failure
:
true
except
:
-
tags
...
...
@@ -108,6 +108,13 @@ test_tag_windows:
only
:
-
tags
test_tag_macos
:
extends
:
.base-macos
script
:
-
docker run --privileged -v `pwd`/output:/opt/tor-reproducer/output ${TEST_IMAGE} ./verify_tor_macos.py ${CI_BUILD_REF_NAME}
only
:
-
tags
release
:
stage
:
release
script
:
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
1
−
0
View file @
9677b8bb
...
...
@@ -21,6 +21,7 @@ ADD verify_tor_utils.py ./
ADD
verify_tor_android.py ./
ADD
verify_tor_linux.py ./
ADD
verify_tor_windows.py ./
ADD
verify_tor_macos.py ./
ADD
tor-versions.json ./
ADD
utils.py ./
ADD
template-android.pom ./
...
...
This diff is collapsed.
Click to expand it.
build_tor.py
+
2
−
0
View file @
9677b8bb
...
...
@@ -3,7 +3,9 @@
import
build_tor_android
import
build_tor_linux
import
build_tor_windows
import
build_tor_macos
build_tor_android
.
build
()
build_tor_linux
.
build
()
build_tor_windows
.
build
()
build_tor_macos
.
build
()
This diff is collapsed.
Click to expand it.
verify_tor.py
+
1
−
0
View file @
9677b8bb
...
...
@@ -4,3 +4,4 @@ from verify_tor_utils import main
main
(
"
android
"
)
main
(
"
linux
"
)
main
(
"
windows
"
)
main
(
"
macos
"
)
This diff is collapsed.
Click to expand it.
verify_tor_macos.py
0 → 100755
+
5
−
0
View file @
9677b8bb
#!/usr/bin/env python3
from
verify_tor_utils
import
main
if
__name__
==
"
__main__
"
:
main
(
"
macos
"
)
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