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

ci: enable dailies for nextcloud 29 #2738

Merged
merged 2 commits into from
May 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 6 additions & 6 deletions .github/spawn-dailies.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash

latest_master_url="https://download.nextcloud.com/server/daily/latest-master.tar.bz2"
latest_stable26_url="https://download.nextcloud.com/server/daily/latest-stable26.tar.bz2"
latest_stable27_url="https://download.nextcloud.com/server/daily/latest-stable27.tar.bz2"
latest_stable28_url="https://download.nextcloud.com/server/daily/latest-stable28.tar.bz2"
latest_stable29_url="https://download.nextcloud.com/server/daily/latest-stable29.tar.bz2"

rewrite_snapcraft_yaml()
{
Expand Down Expand Up @@ -37,11 +37,6 @@ request_build \
"latest-master" "$latest_master_url" "master-$today" \
"From CI: Use Nextcloud latest master"

echo "Requesting build of latest 26..."
request_build \
"latest-26" "$latest_stable26_url" "26-$today" \
"From CI: Use Nextcloud latest 26"

echo "Requesting build of latest 27..."
request_build \
"latest-27" "$latest_stable27_url" "27-$today" \
Expand All @@ -51,3 +46,8 @@ echo "Requesting build of latest 28..."
request_build \
"latest-28" "$latest_stable28_url" "28-$today" \
"From CI: Use Nextcloud latest 28"

echo "Requesting build of latest 29..."
request_build \
"latest-29" "$latest_stable29_url" "29-$today" \
"From CI: Use Nextcloud latest 29"
12 changes: 6 additions & 6 deletions .github/workflows/test-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
working-directory: tests
run: bundle exec ./run-tests.sh integration

test-daily-v26:
test-daily-v27:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Install nextcloud
run: sudo snap install nextcloud --channel=26/edge
run: sudo snap install nextcloud --channel=27/edge

- name: Setup ruby
uses: ruby/setup-ruby@v1
Expand All @@ -43,14 +43,14 @@ jobs:
working-directory: tests
run: bundle exec ./run-tests.sh integration

test-daily-v27:
test-daily-v28:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Install nextcloud
run: sudo snap install nextcloud --channel=27/edge
run: sudo snap install nextcloud --channel=28/edge

- name: Setup ruby
uses: ruby/setup-ruby@v1
Expand All @@ -62,14 +62,14 @@ jobs:
working-directory: tests
run: bundle exec ./run-tests.sh integration

test-daily-v28:
test-daily-v29:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Install nextcloud
run: sudo snap install nextcloud --channel=28/edge
run: sudo snap install nextcloud --channel=29/edge

- name: Setup ruby
uses: ruby/setup-ruby@v1
Expand Down
Loading