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
c9fb70bf
Verified
Commit
c9fb70bf
authored
1 year ago
by
Sebastian
Browse files
Options
Downloads
Patches
Plain Diff
Remove installation scripts
parent
c1004696
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#14676
passed
1 year ago
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Dockerfile
+0
-3
0 additions, 3 deletions
Dockerfile
install-dependencies-verification.sh
+0
-11
0 additions, 11 deletions
install-dependencies-verification.sh
install-dependencies.sh
+0
-41
0 additions, 41 deletions
install-dependencies.sh
install.sh
+0
-21
0 additions, 21 deletions
install.sh
with
0 additions
and
76 deletions
Dockerfile
+
0
−
3
View file @
c9fb70bf
...
...
@@ -5,9 +5,6 @@ ENV DEBIAN_FRONTEND=noninteractive
WORKDIR
/opt/tor-reproducer
ADD
install*.sh ./
RUN
./install.sh
ADD
prepare_tor_macos.sh ./
ADD
prepare_docker_in_docker.sh ./
ADD
build_tor_macos.py ./
...
...
This diff is collapsed.
Click to expand it.
install-dependencies-verification.sh
deleted
100755 → 0
+
0
−
11
View file @
c1004696
#!/usr/bin/env bash
set
-e
set
-x
apt-get
install
-y
--no-install-recommends
\
python3-pip python3-setuptools python3-wheel
\
python3-libarchive-c
\
libmagic1
# Install latest diffoscope (version in Debian stable is outdated)
pip3
install
diffoscope
This diff is collapsed.
Click to expand it.
install-dependencies.sh
deleted
100755 → 0
+
0
−
41
View file @
c1004696
#!/usr/bin/env bash
set
-e
set
-x
apt-get
install
-y
--no-install-recommends
\
git
\
vim
`
# just for live debugging` \
wget
\
gpg
\
zip
\
software-properties-common
\
libyaml-libyaml-perl
\
libtemplate-perl
\
libdatetime-perl
\
libio-handle-util-perl
\
libio-all-perl
\
libio-captureoutput-perl
\
libjson-perl
\
libpath-tiny-perl
\
libstring-shellquote-perl
\
libsort-versions-perl
\
libdigest-sha-perl
\
libdata-uuid-perl
\
libdata-dump-perl
\
libfile-copy-recursive-perl
\
libfile-slurp-perl
\
mercurial
\
uidmap
\
fastjar
# unzip \
# build-essential \
# make \
# patch \
# pkg-config \
# autopoint \
# libtool \
# automake \
# binutils-multiarch \
# perl \
# po4a
This diff is collapsed.
Click to expand it.
install.sh
deleted
100755 → 0
+
0
−
21
View file @
c1004696
#!/usr/bin/env bash
set
-e
set
-x
# update package sources
apt-get update
apt-get
-y
upgrade
# do not install documentation to keep image small
echo
"path-exclude=/usr/share/locale/*"
>>
/etc/dpkg/dpkg.cfg.d/01_nodoc
echo
"path-exclude=/usr/share/man/*"
>>
/etc/dpkg/dpkg.cfg.d/01_nodoc
echo
"path-exclude=/usr/share/doc/*"
>>
/etc/dpkg/dpkg.cfg.d/01_nodoc
# install dependencies
./install-dependencies.sh
./install-dependencies-verification.sh
# clean up for smaller image size
apt-get
-y
autoremove
--purge
apt-get clean
rm
-rf
/var/lib/apt/lists/
*
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