diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-05-27 21:27:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-27 21:27:17 +0300 |
commit | cb6a53949966af46935dd17cc43b5ddc0498b354 (patch) | |
tree | db10fd6eda9b931c8f259a1a0b1fcc297cc8b106 /.github/workflows | |
parent | e496022c568e9f6f42b41cda37f8d2e929eb3564 (diff) |
Add oryx feature (#27)
* add oryx
* modify oryx sh
* add oryx in matrix
* install dotnet
* fix permission
* test
* test 2
* test 3
* fix dotnet
* fix oryx
* fix
* fix path issues + debugging
* remove debugging
* add oryx test to actions
* fix test
* modify test
* add $
* fix user
* address comments
* add repo
* add wget
* allow apt-update
* add --no-check-certificate
* install ca-certificates
* install with another approach
* fix infinite test runs
* Update src/oryx/install.sh
Co-authored-by: Josh Spicer <joshspicer@github.com>
Co-authored-by: Josh Spicer <joshspicer@github.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test-all.yaml | 1 | ||||
-rw-r--r-- | .github/workflows/test-pr.yaml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/test-all.yaml b/.github/workflows/test-all.yaml index 296ddeb..a434a73 100644 --- a/.github/workflows/test-all.yaml +++ b/.github/workflows/test-all.yaml @@ -29,6 +29,7 @@ jobs: "python jupyterlab", # Install 'python', then 'jupyterlab' "kubectl-helm-minikube", "node", + "oryx", "php", "powershell", "python", diff --git a/.github/workflows/test-pr.yaml b/.github/workflows/test-pr.yaml index 8dc097f..b750bbd 100644 --- a/.github/workflows/test-pr.yaml +++ b/.github/workflows/test-pr.yaml @@ -29,6 +29,7 @@ jobs: 'python jupyterlab': ./**/jupyterlab/** kubectl-helm-minikube: ./**/kubectl-helm-minikube/** node: ./**/node/** + oryx: ./**/oryx/** php: ./**/php/** powershell: ./**/powershell/** python: ./**/python/** |