Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Introduced two version support feature (#101)
Browse files Browse the repository at this point in the history
* feat: introduce two version support feature

Signed-off-by: hlts2 <[email protected]>

* Update .github/workflows/release.yaml

Signed-off-by: Hiroto Funakoshi <[email protected]>

* Update Makefile

Signed-off-by: Hiroto Funakoshi <[email protected]>

* fix: bugfix pom update timing

Signed-off-by: hlts2 <[email protected]>

* feat: add VALD_SHA

Signed-off-by: hlts2 <[email protected]>

* fix: update secret name

Signed-off-by: hlts2 <[email protected]>

* fix: enable cron and change workflow target branch

Signed-off-by: hlts2 <[email protected]>

* fix: debug job for build and test and publish preapre

Signed-off-by: hlts2 <[email protected]>

* Revert "fix: debug job for build and test and publish preapre"

This reverts commit 73cc64e.

* Update .github/workflows/sync.yaml

Signed-off-by: Hiroto Funakoshi <[email protected]>

---------

Signed-off-by: hlts2 <[email protected]>
Signed-off-by: Hiroto Funakoshi <[email protected]>
  • Loading branch information
hlts2 authored May 13, 2024
1 parent 1b83f8d commit 8cd0d44
Show file tree
Hide file tree
Showing 9 changed files with 180 additions and 376 deletions.
222 changes: 0 additions & 222 deletions .github/workflows/build.yml

This file was deleted.

85 changes: 0 additions & 85 deletions .github/workflows/deploy.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#
# Copyright (C) 2019-2024 vdaas.org vald team <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# DO NOT EDIT
name: "Run E2E test"
on:
push:
branches:
- main
pull_request:

jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: vdaas/vald-client-ci/.github/actions/e2e@main
with:
client_type: clj
30 changes: 30 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#
# Copyright (C) 2019-2024 vdaas.org vald team <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# DO NOT EDIT
name: "Run release"
on:
push:
tags:
- '*.*.*'
- 'v*.*.*'
- '*.*.*-*'
- 'v*.*.*-*'
jobs:
release:
uses: vdaas/vald-client-ci/.github/workflows/release.yaml@main
with:
client_type: clj
secrets: inherit
Loading

0 comments on commit 8cd0d44

Please sign in to comment.