-
Notifications
You must be signed in to change notification settings - Fork 106
Added automated integration tests runs on github (requires approval) #112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Run Integration Tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
integ-tests: | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: integ-tests | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
- name: allows us to build amr64 images | ||
roger-zhangg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes | ||
- name: run integration tests | ||
run: sudo make integ-tests-with-docker | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. do we (or why do we) need to run it with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't work without it. I ran into some permissions issue when I tried. Even on my dev desktop I have to use it.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I imagine most of the examples out there use
@v3
, but@v4
is the latest version available, and it avoids this warning that you can see in your runs:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated.