Skip to content

Commit

Permalink
Merge branch 'dev' into central-controller
Browse files Browse the repository at this point in the history
  • Loading branch information
glimberg committed Oct 1, 2021
2 parents b403f10 + 9e8de2a commit 27e3597
Show file tree
Hide file tree
Showing 27 changed files with 3,303 additions and 2,393 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/badstrings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: badstrings
on: [pull_request, push]
jobs:
badstrings:
runs-on: ubuntu-latest
steps:
- name: scanning commit message for bad strings
run: |
#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
message="${{ github.event.head_commit.message }}"
strings=($(curl -s https://raw.githubusercontent.com/someara/badstrings/main/strings.txt))
for i in ${strings[@]} ; do
echo "${message}" | grep -v "$i" &>/dev/null;
done
28 changes: 28 additions & 0 deletions Dockerfile.ci
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# vim: ft=dockerfile

FROM ubuntu:21.04 as stage

RUN apt-get update -qq && apt-get -qq install make clang
COPY . .
RUN /usr/bin/make
RUN echo $PWD
RUN cp zerotier-one /usr/sbin

FROM ubuntu:21.04

COPY --from=stage /zerotier-one /usr/sbin
RUN ln -sf /usr/sbin/zerotier-one /usr/sbin/zerotier-idtool
RUN ln -sf /usr/sbin/zerotier-one /usr/sbin/zerotier-cli

RUN echo "${VERSION}" > /etc/zerotier-version
RUN rm -rf /var/lib/zerotier-one


RUN apt-get -qq update
RUN apt-get -qq install iproute2 net-tools fping 2ping iputils-ping iputils-arping

COPY entrypoint.sh.release /entrypoint.sh
RUN chmod 755 /entrypoint.sh

CMD []
ENTRYPOINT ["/entrypoint.sh"]
6 changes: 3 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
zerotier-one (1.7.1) unstable; urgency=medium
zerotier-one (1.8.0) unstable; urgency=medium

* Version 1.8.0 PRE-release, beta testing.
* See RELEASE-NOTES.md for release notes.

-- Adam Ierymenko <[email protected]> Tue, 23 Aug 2021 01:00:00 -0700
-- Adam Ierymenko <[email protected]> Wed, 15 Sep 2021 01:00:00 -0700

zerotier-one (1.6.5) unstable; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion ext/installfiles/mac/ZeroTier One.pkgproj
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@
<key>USE_HFS+_COMPRESSION</key>
<false/>
<key>VERSION</key>
<string>1.7.2</string>
<string>1.8.0</string>
</dict>
<key>TYPE</key>
<integer>0</integer>
Expand Down
189 changes: 103 additions & 86 deletions ext/installfiles/windows/ZeroTier One.aip

Large diffs are not rendered by default.

513 changes: 513 additions & 0 deletions ext/installfiles/windows/ZeroTier One.back.aip

Large diffs are not rendered by default.

Loading

0 comments on commit 27e3597

Please sign in to comment.