ci: comment-out deps job (see github.com/orgs/community/discussions/18001)
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
44
.github/workflows/main.yml
vendored
44
.github/workflows/main.yml
vendored
@@ -65,31 +65,33 @@ jobs:
|
|||||||
--name "${GITHUB_ACTOR}" \
|
--name "${GITHUB_ACTOR}" \
|
||||||
--buildkitd-flags "--allow-insecure-entitlement network.host"
|
--buildkitd-flags "--allow-insecure-entitlement network.host"
|
||||||
|
|
||||||
deps:
|
## commented out due to https://github.com/orgs/community/discussions/18001
|
||||||
if: ${{fromJSON(vars.CI_VERBOSE_DEPS || 'false')}}
|
#
|
||||||
name: Deps
|
# deps:
|
||||||
needs: [init]
|
# if: ${{fromJSON(vars.CI_VERBOSE_DEPS || 'false')}}
|
||||||
uses: ./.github/workflows/deps.yml
|
# name: Deps
|
||||||
with:
|
# needs: [init]
|
||||||
cargo_profiles: ${{needs.init.outputs.cargo_profiles}}
|
# uses: ./.github/workflows/deps.yml
|
||||||
feat_sets: ${{needs.init.outputs.feat_sets}}
|
# with:
|
||||||
rust_toolchains: ${{needs.init.outputs.rust_toolchains}}
|
# cargo_profiles: ${{needs.init.outputs.cargo_profiles}}
|
||||||
rust_targets: ${{needs.init.outputs.rust_targets}}
|
# feat_sets: ${{needs.init.outputs.feat_sets}}
|
||||||
sys_names: ${{needs.init.outputs.sys_names}}
|
# rust_toolchains: ${{needs.init.outputs.rust_toolchains}}
|
||||||
sys_targets: ${{needs.init.outputs.sys_targets}}
|
# rust_targets: ${{needs.init.outputs.rust_targets}}
|
||||||
sys_versions: ${{needs.init.outputs.sys_versions}}
|
# sys_names: ${{needs.init.outputs.sys_names}}
|
||||||
machines: ${{needs.init.outputs.machines}}
|
# sys_targets: ${{needs.init.outputs.sys_targets}}
|
||||||
excludes: >
|
# sys_versions: ${{needs.init.outputs.sys_versions}}
|
||||||
[
|
# machines: ${{needs.init.outputs.machines}}
|
||||||
{"cargo_profile": "release-debuginfo", "rust_toolchain": "nightly"},
|
# excludes: >
|
||||||
{"cargo_profile": "release-max-perf", "rust_toolchain": "stable"},
|
# [
|
||||||
{"cargo_profile": "release-max-perf", "feat_set": "none"}
|
# {"cargo_profile": "release-debuginfo", "rust_toolchain": "nightly"},
|
||||||
]
|
# {"cargo_profile": "release-max-perf", "rust_toolchain": "stable"},
|
||||||
|
# {"cargo_profile": "release-max-perf", "feat_set": "none"}
|
||||||
|
# ]
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
if: ${{ !failure() && !cancelled() }}
|
if: ${{ !failure() && !cancelled() }}
|
||||||
name: Lint
|
name: Lint
|
||||||
needs: [init, deps]
|
needs: [init] #needs: [init, deps]
|
||||||
uses: ./.github/workflows/lint.yml
|
uses: ./.github/workflows/lint.yml
|
||||||
with:
|
with:
|
||||||
cargo_profiles: ${{needs.init.outputs.cargo_profiles}}
|
cargo_profiles: ${{needs.init.outputs.cargo_profiles}}
|
||||||
|
|||||||
Reference in New Issue
Block a user