Skip to content
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

Optimizing Release Process #8486

Merged
merged 25 commits into from
Feb 15, 2024
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
65f83a8
trying macos arm64 runners
rasswanth-s Feb 14, 2024
7f808b7
commented out Mac Arm python version
rasswanth-s Feb 14, 2024
326b6fe
test hagrid launch
rasswanth-s Feb 14, 2024
952c083
try automating hagrid tests
rasswanth-s Feb 14, 2024
5bf9e56
include api/0.8 notebooks paths in workflow
rasswanth-s Feb 14, 2024
fde6bcb
modified to include absolute paths
rasswanth-s Feb 14, 2024
0da797f
modified python command
rasswanth-s Feb 14, 2024
26db521
modified port
rasswanth-s Feb 14, 2024
59d7c19
Added syft installation with data science packages
rasswanth-s Feb 14, 2024
93ae47a
modified orchestra deployment to k8s
rasswanth-s Feb 14, 2024
4d262b1
Added e2e.test.notebook to tox
rasswanth-s Feb 15, 2024
ac971fc
added syft version to tox e2e.test.notebook
rasswanth-s Feb 15, 2024
499633e
added syft version to tox e2e.test.notebook without printing version …
rasswanth-s Feb 15, 2024
4d2f317
lint
rasswanth-s Feb 15, 2024
864496c
fix e2e.test.notebook
rasswanth-s Feb 15, 2024
6543512
modified tox test
rasswanth-s Feb 15, 2024
64ca18f
fix minor spelling
rasswanth-s Feb 15, 2024
d70b2bf
skip collection
rasswanth-s Feb 15, 2024
588ecc7
Merge branch 'dev' into rasswanth/optimize-post-release-tests
rasswanth-s Feb 15, 2024
f3da2da
Merge branch 'dev' into rasswanth/optimize-post-release-tests
rasswanth-s Feb 15, 2024
aee0a8c
removed redundant install steps
rasswanth-s Feb 15, 2024
b025faa
re-enabled syft install tests
rasswanth-s Feb 15, 2024
cb5cca8
Added post release tests to cd-syft release pipeline
rasswanth-s Feb 15, 2024
3e45a21
removed unsued comments
rasswanth-s Feb 15, 2024
e34f8c4
fix the version branch to dev
rasswanth-s Feb 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
trying macos arm64 runners
  • Loading branch information
rasswanth-s committed Feb 14, 2024
commit 65f83a8fc0d3f6f58025012020a2fc0d62eee87f
7 changes: 6 additions & 1 deletion .github/workflows/cd-post-release-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,16 @@ jobs:
strategy:
max-parallel: 99
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
python-version: ["3.11", "3.10", "3.9"]

runs-on: ${{ matrix.os }}
steps:
- name: System Architecture
run: |
echo "System Architecture: $(uname -m)"
echo "System Version: $(uname -a)"

- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
Expand Down
Loading