-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated golang.org/x/sys to v0.6.0 - Fixed autobahn docker - Updated CI to use stable and oldstable Go releases - Run CI by cron - Dependabot
- Loading branch information
1 parent
26e4a44
commit 700ceca
Showing
6 changed files
with
52 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: gomod | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: weekly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
FROM alpine:3.12 | ||
# Based on https://github.com/crossbario/autobahn-testsuite/blob/09cfbf74b0c8e335c6fc7df88e5c88349ca66879/docker/Dockerfile | ||
|
||
RUN apk add --no-cache python2 python2-dev gcc build-base musl-dev libffi-dev openssl-dev && \ | ||
python -m ensurepip && \ | ||
pip install --upgrade pip && \ | ||
pip install --no-python-version-warning autobahntestsuite | ||
FROM pypy:2-slim | ||
|
||
# make "pypy" available as "python" | ||
RUN ln -s /usr/local/bin/pypy /usr/local/bin/python | ||
|
||
# We need this to fix pip & cryptography | ||
RUN apt-get update && apt-get install -y build-essential libssl-dev | ||
|
||
# install Autobahn|Testsuite | ||
RUN pip install -U pip typing && \ | ||
pip install autobahntestsuite=='0.8.2' | ||
|
||
VOLUME /config | ||
VOLUME /report | ||
|
||
CMD ["/usr/bin/wstest", "--mode", "fuzzingclient", "--spec", "/config/fuzzingclient.json"] | ||
WORKDIR / | ||
EXPOSE 9001 9001 | ||
|
||
CMD ["wstest", "--mode", "fuzzingclient", "--spec", "/config/fuzzingclient.json"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.15.6-alpine3.12 | ||
FROM golang:1.20.2-alpine3.17 | ||
|
||
WORKDIR /go/src/github.com/gobwas/ws | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters