From 2f389ad7f8d4153fbffc366121496e874b64600e Mon Sep 17 00:00:00 2001 From: Constantin Nickel Date: Mon, 12 Oct 2020 14:40:04 +0200 Subject: [PATCH] Build the Autobahn examples upfront --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e837df..574002b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,6 +96,12 @@ jobs: sudo apt-get install python-unittest2 sudo pip install urllib3[secure] autobahntestsuite + - name: Build Autobahn TestSuite for client + run: cargo build --release --features async-std-runtime --example autobahn-client + + - name: Build Autobahn TestSuite for server + run: cargo build --release --features async-std-runtime --example autobahn-server + - name: Running Autobahn TestSuite for client run: ./scripts/autobahn-client.sh