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

Enhance OCM Test Suite #88

Merged
merged 38 commits into from
Mar 6, 2024
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
90d5411
add: pull scripts
MahdiBaghbani Mar 4, 2024
1d4795e
refactor: move script to dev directory
MahdiBaghbani Mar 4, 2024
4783d43
add: ocm-test-suite pull push build scripts
MahdiBaghbani Mar 6, 2024
57decea
remove act binary
MahdiBaghbani Mar 6, 2024
a74558e
add: bin directory to git ignore
MahdiBaghbani Mar 6, 2024
85e1ab6
modify: prebuild script use docker/pull/all
MahdiBaghbani Mar 6, 2024
0d9cd99
add: install latest version of act
MahdiBaghbani Mar 6, 2024
4de7df0
update: actions/upload-artifact version
MahdiBaghbani Mar 6, 2024
c1480d3
fix: typo
MahdiBaghbani Mar 6, 2024
9dab017
feat: consolidate scripts
MahdiBaghbani Mar 6, 2024
2ee6809
remove: -it flag for docker since it conflicts with gh actions
MahdiBaghbani Mar 6, 2024
32c1f98
add: sshx to debug github action
MahdiBaghbani Mar 6, 2024
221f0a0
ci: debug
MahdiBaghbani Mar 6, 2024
715401f
update: reva version
MahdiBaghbani Mar 6, 2024
a8be1a1
ci: fix script
MahdiBaghbani Mar 6, 2024
28945b2
fix: typo
MahdiBaghbani Mar 6, 2024
376b980
chore: fix some coding styles
MahdiBaghbani Mar 6, 2024
17f6e12
add: ability to run both dev and ci
MahdiBaghbani Mar 6, 2024
8e43bbe
ci: test new script
MahdiBaghbani Mar 6, 2024
bb84737
ci: do not run collabora!
MahdiBaghbani Mar 6, 2024
b5c0422
remove: unused files
MahdiBaghbani Mar 6, 2024
9908a27
remove: -it flag is not needed for ss command
MahdiBaghbani Mar 6, 2024
9c93978
rename: github action jobs
MahdiBaghbani Mar 6, 2024
a11f724
remove: ci directory
MahdiBaghbani Mar 6, 2024
74da34e
update: giltab ci config
MahdiBaghbani Mar 6, 2024
fb61977
relocate: revad directory to configs directory
MahdiBaghbani Mar 6, 2024
35531a8
update: reva version
MahdiBaghbani Mar 6, 2024
f25d9df
fix: typo
MahdiBaghbani Mar 6, 2024
9cecd6f
fix: typo!
MahdiBaghbani Mar 6, 2024
5d2d775
add: split apps configs for more control over which apps to enable
MahdiBaghbani Mar 6, 2024
840c20b
fix: wrong path
MahdiBaghbani Mar 6, 2024
98ddf81
update: go version
MahdiBaghbani Mar 6, 2024
f2da16d
add: do not compile on reva ci runs
MahdiBaghbani Mar 6, 2024
fef9822
ci: update script arguments
MahdiBaghbani Mar 6, 2024
1020167
ci: set git clone depth to 1 in jobs
MahdiBaghbani Mar 6, 2024
ecf679c
fix: missing git clone flag
MahdiBaghbani Mar 6, 2024
794d692
fix: missing git flag
MahdiBaghbani Mar 6, 2024
c56e703
refactor: make names consistant across dev-stock
MahdiBaghbani Mar 6, 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
Prev Previous commit
Next Next commit
remove: -it flag for docker since it conflicts with gh actions
MahdiBaghbani committed Mar 6, 2024
commit 2ee68097d1693f5c84ffdcf30ecbae129b726b92
6 changes: 3 additions & 3 deletions init/ocm-test-suite.sh
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ BRANCH_REVA=v1.26.0
${REPO_NEXTCLOUD_APP} \
nextcloud-sciencemesh \
&& \
docker run -it --rm \
docker run --rm \
-v "$(pwd)/nextcloud-sciencemesh:/var/www/html/apps/sciencemesh" \
--workdir /var/www/html/apps/sciencemesh \
pondersource/dev-stock-nextcloud-sciencemesh \
@@ -71,7 +71,7 @@ BRANCH_REVA=v1.26.0
${REPO_OWNCLOUD_APP} \
owncloud-sciencemesh \
&& \
docker run -it --rm \
docker run --rm \
-v "$(pwd)/owncloud-sciencemesh:/var/www/html/apps/sciencemesh" \
--workdir /var/www/html/apps/sciencemesh \
pondersource/dev-stock-owncloud-sciencemesh \
@@ -88,7 +88,7 @@ BRANCH_REVA=v1.26.0
${REPO_REVA} \
reva \
&& \
docker run -it --rm \
docker run --rm \
-v "$(pwd)/reva:/reva-build" \
--workdir /reva-build \
golang:1.21.1-bullseye \