Remove old versions from schedule, trigger for release branch PRs
This commit is contained in:
4
.github/workflows/ci-0.5.yml
vendored
4
.github/workflows/ci-0.5.yml
vendored
@@ -1,9 +1,9 @@
|
|||||||
name: CI v0.5
|
name: CI v0.5
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
|
||||||
- cron: '0 5 * * *'
|
|
||||||
pull_request:
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- 'releases/v0.5'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
4
.github/workflows/ci-0.6.yml
vendored
4
.github/workflows/ci-0.6.yml
vendored
@@ -1,9 +1,9 @@
|
|||||||
name: CI v0.6
|
name: CI v0.6
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
|
||||||
- cron: '0 5 * * *'
|
|
||||||
pull_request:
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- 'releases/v0.6'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
42
.github/workflows/ci-0.7.yml
vendored
42
.github/workflows/ci-0.7.yml
vendored
@@ -1,42 +0,0 @@
|
|||||||
name: CI v0.7
|
|
||||||
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 5 * * *'
|
|
||||||
pull_request:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
fleet_version:
|
|
||||||
- "v0.7.0"
|
|
||||||
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
ref: "release/v0.7"
|
|
||||||
-
|
|
||||||
uses: actions/cache@v3
|
|
||||||
id: fleet-cli-cache
|
|
||||||
with:
|
|
||||||
path: /home/runner/.local/bin
|
|
||||||
key: ${{ runner.os }}-fleet-cli-${{ matrix.fleet_version }}
|
|
||||||
-
|
|
||||||
name: Download CLI
|
|
||||||
if: steps.fleet-cli-cache.outputs.cache-hit != 'true'
|
|
||||||
run: |
|
|
||||||
mkdir -p /home/runner/.local/bin
|
|
||||||
wget -nv "https://github.com/rancher/fleet/releases/download/${{ matrix.fleet_version }}/fleet-linux-amd64"
|
|
||||||
mv fleet-linux-amd64 /home/runner/.local/bin/fleet
|
|
||||||
chmod +x /home/runner/.local/bin/fleet
|
|
||||||
-
|
|
||||||
name: Test
|
|
||||||
run: |
|
|
||||||
tests/test.sh
|
|
||||||
Reference in New Issue
Block a user