Skip to content

Commit

Permalink
Remove tests w/ testing repo from GitHub Actions
Browse files Browse the repository at this point in the history
Signed-off-by: mulhern <amulhern@redhat.com>
  • Loading branch information
mulkieran committed Sep 27, 2023
1 parent c06c057 commit 4aa39f0
Showing 1 changed file with 0 additions and 61 deletions.
61 changes: 0 additions & 61 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,64 +275,3 @@ jobs:
PYTHONPATH=./src
make filesystem-predict-tests
working-directory: ./tests/client-dbus

tests-with-testing-repo:
strategy:
matrix:
include:
- rev: HEAD
args: --verify-devices --monitor-dbus --highest-revision-number=6
- rev: v3.5.2
args: --verify-devices
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Run apt-get update
run: sudo apt-get -q update
- name: Install dependencies
run: >
DEBIAN_FRONTEND=noninteractive
sudo apt-get install -y
asciidoc
clang
curl
libblkid-dev
libcryptsetup-dev
libdbus-1-dev
libdevmapper-dev
libsystemd-dev
libudev-dev
make
thin-provisioning-tools
udev
xfsprogs
- name: Install Python dependencies
run: >
sudo python -m pip install
dbus-python
dbus-python-client-gen
psutil
- uses: dtolnay/rust-toolchain@master
with:
components: cargo
toolchain: 1.71.1 # LOWEST SUPPORTED RUST TOOLCHAIN
- name: Build stratisd
run: PROFILEDIR=debug make -f Makefile build-all
- name: Install stratisd
run: sudo make PROFILEDIR=debug -f Makefile install
- name: Workaround for dbus inotify
run: sudo cp stratisd.conf /usr/share/dbus-1/system.d
- name: Reload udev
run: sudo udevadm control --reload
- name: Clone testing repo
run: git clone https://github.com/stratis-storage/testing.git
- name: Checkout revision ${{ matrix.rev }}
run: git checkout -b new-branch ${{ matrix.rev }}
working-directory: ./testing
- name: Run stratisd_cert.py
run: >
sudo
RUST_LOG=stratisd=debug
python3 test_harness.py stratisd_cert
${{ matrix.args }}
working-directory: ./testing

0 comments on commit 4aa39f0

Please sign in to comment.