Skip to content

Commit

Permalink
[vald-client-clj]: Use vald-client-ci workflows for release and e2e (#…
Browse files Browse the repository at this point in the history
…291)

* feat: add e2e workflow and make command

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

* fix: add debug job for version checking

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

* fix: set secrets for token

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

* fix: deleted unnecessary token

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

* fix: add make command for two version feature

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

* fix: add missing make command

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

* fix: deleted unnecessary variable

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

* fix: deleted unnecessary commands

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

* fix: add makefile variable

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

* fix: add lein command download logic

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

* fix: dependency ordering

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

* fix: fix to verify failure when version does not exist

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

* fix: deleted unnecessary commands

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

* fix: deleted unnecessary workflow and add sync workflow

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

* fix: deleted unnecessary commands

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

* feat: add release workflow

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

* fix: deleted unnecessary job

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

* fix: add missing make command and small refactor

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

* fix: deleted unnecessary job

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

* fix: add debug job

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

* fix: update gitignore file

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

* fix: debug job for go version changes

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

* fix: add command for debug

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

* fix: deleted unnecessary debug job and command

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

* Update .github/workflows/release.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 9, 2024
1 parent 6d6e5b1 commit 1210d41
Show file tree
Hide file tree
Showing 8 changed files with 187 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.

33 changes: 33 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#
# 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
# TODO: change to the following before main merge.
# - uses: vdaas/vald-client-ci/.github/actions/e2e@main
- uses: vdaas/vald-client-ci/.github/actions/e2e@feat/add-common-workflows
with:
client_type: clj
32 changes: 32 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#
# 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:
# TODO: change to the following before main merge.
# uses: vdaas/vald-client-ci/.github/workflows/release.yaml@main
uses: vdaas/vald-client-ci/.github/workflows/release.yaml@feat/add-common-workflows
with:
client_type: clj
secrets: inherit
Loading

0 comments on commit 1210d41

Please sign in to comment.