Skip to content

Commit

Permalink
also test against legacy branch
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Aug 15, 2023
1 parent 3b61e96 commit 2b06cc8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
OLD_REV: "HEAD"
- SELECT: nose
OLD_REV: "v0.3.0"
- SELECT: nose
OLD_REV: "origin/legacy"
- SELECT: usage
- SELECT: client
runs-on: ubuntu-20.04
Expand All @@ -40,7 +42,6 @@ jobs:
sudo iptables -t filter -P FORWARD ACCEPT
- name: Run tests
run: |
export NEW_REV=HEAD
export SELECT=${{ matrix.SELECT }}
export OLD_REV=${{ matrix.OLD_REV }}
sudo -E ./tests/travis.sh
4 changes: 2 additions & 2 deletions tests/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
case "$SELECT" in
nose)
setup_container
test_nose $OLD_REV $NEW_REV
test_nose $OLD_REV HEAD
;;
usage)
setup_container
test_usage $NEW_REV
test_usage HEAD
;;
client)
test_client_compile
Expand Down

0 comments on commit 2b06cc8

Please sign in to comment.