From 31c72b0eadda42dd4c1c1fbd4535c19874daa310 Mon Sep 17 00:00:00 2001 From: akwizgran <michael@briarproject.org> Date: Thu, 10 Nov 2022 10:42:24 +0000 Subject: [PATCH] Address review feedback. --- .gitlab-ci.yml | 21 ++++++++++++++++----- README.md | 12 ++++++------ 2 files changed, 22 insertions(+), 11 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d8f4beb..61a92d7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,18 +21,29 @@ build: - docker build -t ${TEST_IMAGE} . - docker push $TEST_IMAGE -test: +test_obfs4proxy: stage: test script: - docker run -v `pwd`:/opt/go-reproducer ${TEST_IMAGE} /bin/bash -c "./build-binary.py obfs4proxy && ./verify-binary.py obfs4proxy" + allow_failure: true + artifacts: + paths: + - obfs4proxy-*.jar + - obfs4proxy-*.pom + expire_in: 1 week + when: always + except: + - tags + +test_snowflake: + stage: test + script: - docker run -v `pwd`:/opt/go-reproducer ${TEST_IMAGE} /bin/bash -c "./build-binary.py snowflake && ./verify-binary.py snowflake" allow_failure: true artifacts: paths: - - obfs4proxy-*.jar - - obfs4proxy-*.pom - - snowflake-*.jar - - snowflake-*.pom + - snowflake-*.jar + - snowflake-*.pom expire_in: 1 week when: always except: diff --git a/README.md b/README.md index 4e0ac4e..f9a2a6f 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,12 @@ and no modifications (such as backdoors) were added. Current packages: -* https://repo.maven.apache.org/maven2/org/briarproject/obfs4proxy-android -* https://repo.maven.apache.org/maven2/org/briarproject/obfs4proxy-linux -* https://repo.maven.apache.org/maven2/org/briarproject/obfs4proxy-windows -* https://repo.maven.apache.org/maven2/org/briarproject/snowflake-android -* https://repo.maven.apache.org/maven2/org/briarproject/snowflake-linux -* https://repo.maven.apache.org/maven2/org/briarproject/snowflake-windows +* https://mvnrepository.com/artifact/org.briarproject/obfs4proxy-android +* https://mvnrepository.com/artifact/org.briarproject/obfs4proxy-linux +* https://mvnrepository.com/artifact/org.briarproject/obfs4proxy-windows +* https://mvnrepository.com/artifact/org.briarproject/snowflake-android +* https://mvnrepository.com/artifact/org.briarproject/snowflake-linux +* https://mvnrepository.com/artifact/org.briarproject/snowflake-windows More information about these so called reproducible builds is available at [reproducible-builds.org](https://reproducible-builds.org/). -- GitLab