mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
misc: bazelisk -> bazel
This commit is contained in:
parent
a0ac230298
commit
660781d35e
2
.github/actions/e2e_mini/action.yml
vendored
2
.github/actions/e2e_mini/action.yml
vendored
@ -49,4 +49,4 @@ runs:
|
||||
ARM_SUBSCRIPTION_ID: ${{ inputs.azureSubscriptionID }}
|
||||
ARM_TENANT_ID: ${{ inputs.azureTenantID }}
|
||||
run: |
|
||||
bazelisk run //e2e/miniconstellation:push_remote_test
|
||||
bazel run //e2e/miniconstellation:push_remote_test
|
||||
|
2
.github/actions/notify_failure/action.yml
vendored
2
.github/actions/notify_failure/action.yml
vendored
@ -64,7 +64,7 @@ runs:
|
||||
cat metadata.json
|
||||
|
||||
issueURL=$(
|
||||
bazelisk run //bazel/ci:ghh -- create-project-issue \
|
||||
bazel run //bazel/ci:ghh -- create-project-issue \
|
||||
--body body.md \
|
||||
--metadata metadata.json \
|
||||
-v
|
||||
|
2
.github/workflows/build-ccm-gcp.yml
vendored
2
.github/workflows/build-ccm-gcp.yml
vendored
@ -48,7 +48,7 @@ jobs:
|
||||
|
||||
- name: Build CCM
|
||||
run: |
|
||||
bazelisk build //cmd/cloud-controller-manager:cloud-controller-manager
|
||||
bazel build //cmd/cloud-controller-manager:cloud-controller-manager
|
||||
|
||||
- name: Copy CCM
|
||||
run: |
|
||||
|
4
.github/workflows/e2e-upgrade.yml
vendored
4
.github/workflows/e2e-upgrade.yml
vendored
@ -181,8 +181,8 @@ jobs:
|
||||
KUBERNETES_FLAG="--target-kubernetes=$KUBERNETES"
|
||||
fi
|
||||
|
||||
bazelisk run //bazel/release:push
|
||||
bazelisk run //e2e/internal/upgrade:upgrade_test -- --want-worker "$WORKERNODES" --want-control "$CONTROLNODES" --target-image "$IMAGE" "$KUBERNETES_FLAG" "$MICROSERVICES_FLAG"
|
||||
bazel run //bazel/release:push
|
||||
bazel run //e2e/internal/upgrade:upgrade_test -- --want-worker "$WORKERNODES" --want-control "$CONTROLNODES" --target-image "$IMAGE" "$KUBERNETES_FLAG" "$MICROSERVICES_FLAG"
|
||||
|
||||
- name: Always fetch logs
|
||||
if: always()
|
||||
|
2
.github/workflows/test-integration.yml
vendored
2
.github/workflows/test-integration.yml
vendored
@ -39,7 +39,7 @@ jobs:
|
||||
run: sudo apt-get update && sudo apt-get install -y libcryptsetup12 libcryptsetup-dev
|
||||
|
||||
- name: Create and populate build folder
|
||||
run: mkdir build && cd build && cmake -DBAZEL:STRING=bazelisk ..
|
||||
run: mkdir build && cd build && cmake ..
|
||||
|
||||
# Runs all test targets starting with "integration-"
|
||||
- name: Integration Tests
|
||||
|
10
.github/workflows/test-tidy.yml
vendored
10
.github/workflows/test-tidy.yml
vendored
@ -51,12 +51,12 @@ jobs:
|
||||
if: startsWith(github.head_ref, 'renovate/')
|
||||
shell: bash
|
||||
run: |
|
||||
bazelisk run //bazel/ci:deps_mirror_upgrade
|
||||
bazelisk run //bazel/ci:deps_mirror_upload
|
||||
bazel run //bazel/ci:deps_mirror_upgrade
|
||||
bazel run //bazel/ci:deps_mirror_upload
|
||||
|
||||
- name: Run Bazel tidy
|
||||
shell: bash
|
||||
run: bazelisk run //:tidy
|
||||
run: bazel run //:tidy
|
||||
|
||||
- name: Check if untidy
|
||||
id: untidy
|
||||
@ -75,7 +75,7 @@ jobs:
|
||||
|
||||
- name: Run Bazel generate
|
||||
shell: bash
|
||||
run: bazelisk run //:generate
|
||||
run: bazel run //:generate
|
||||
|
||||
- name: Check if ungenerated
|
||||
id: ungenerated
|
||||
@ -121,7 +121,7 @@ jobs:
|
||||
|
||||
- name: Run Bazel check
|
||||
shell: bash
|
||||
run: bazelisk run //:check
|
||||
run: bazel run //:check
|
||||
|
||||
# The following steps are only executed if the previous tidy check failed
|
||||
# and the action runs on an renovate branch. In this case, we tidy all
|
||||
|
2
.github/workflows/test-unittest.yml
vendored
2
.github/workflows/test-unittest.yml
vendored
@ -42,7 +42,7 @@ jobs:
|
||||
run: sudo apt-get update && sudo apt-get install -y libcryptsetup12 libcryptsetup-dev libvirt-dev
|
||||
|
||||
- name: Create and populate build folder
|
||||
run: mkdir build && cd build && cmake -DBAZEL:STRING=bazelisk ..
|
||||
run: mkdir build && cd build && cmake ..
|
||||
|
||||
- name: Unit Tests
|
||||
working-directory: build
|
||||
|
Loading…
Reference in New Issue
Block a user