Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# Share repository cache between workflows.
repository-cache: true

- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0


- name: Update SDK to latest
Expand Down
11 changes: 3 additions & 8 deletions .github/workflows/flowstate-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ on:
description: 'Version of Intrinsic tools to use'
required: false
default: 'latest'
INTRINSIC_VM_DURATION:
description: 'Duration time (hours) for request the VM'
required: false
default: '1'
type: string

jobs:
ci:
Expand All @@ -29,7 +24,6 @@ jobs:
INTRINSIC_SOLUTION: ${{ github.event.inputs.INTRINSIC_SOLUTION }}
INTRINSIC_API_KEY: ${{ secrets.INTRINSIC_API_KEY }}
INTRINSIC_TOOL_VERSION: ${{ github.event.inputs.INTRINSIC_TOOL_VERSION }}
INTRINSIC_VM_DURATION: ${{ github.event.inputs.INTRINSIC_VM_DURATION }}
SKILLS_UNDER_TEST: |
//skills/start_stopwatch:start_stopwatch_skill
//skills/stop_stopwatch:stop_stopwatch_py_skill
Expand Down Expand Up @@ -59,7 +53,7 @@ jobs:
# Share repository cache between workflows.
repository-cache: true

- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Setup Intrinsic Tools
uses: ./.github/actions/setup-intrinsic-tools
Expand Down Expand Up @@ -107,9 +101,10 @@ jobs:

- name: Run CI Bash Script
shell: bash
env:
PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${{ github.workspace }}/bin
run: |
. ./tests/run_ci.sh --skill=${{ steps.prep_targets.outputs.skill_list }} \
--org=${INTRINSIC_ORGANIZATION} \
--solution=${INTRINSIC_SOLUTION} \
--vm-duration="${INTRINSIC_VM_DURATION}" \
--service=${{ steps.prep_targets.outputs.service_list }}\
27 changes: 17 additions & 10 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ archive_override(
)

# Direct dependencies
bazel_dep(name = "abseil-cpp", version = "20250814.0", repo_name = "com_google_absl")
bazel_dep(name = "abseil-cpp", version = "20250814.1", repo_name = "com_google_absl")
bazel_dep(name = "abseil-py", version = "2.1.0", repo_name = "com_google_absl_py")
bazel_dep(name = "bazel_skylib", version = "1.8.1")
bazel_dep(name = "googletest", version = "1.17.0", repo_name = "com_google_googletest")
bazel_dep(name = "bazel_skylib", version = "1.8.2")
bazel_dep(name = "googletest", version = "1.17.0.bcr.1", repo_name = "com_google_googletest")
bazel_dep(name = "grpc", version = "1.74.1", repo_name = "com_github_grpc_grpc")
bazel_dep(name = "platforms", version = "1.0.0")
bazel_dep(name = "protobuf", version = "32.0", repo_name = "com_google_protobuf")
bazel_dep(name = "protobuf", version = "32.1", repo_name = "com_google_protobuf")
bazel_dep(name = "rules_go", version = "0.57.0", repo_name = "io_bazel_rules_go")
bazel_dep(name = "rules_pkg", version = "1.1.0")
bazel_dep(name = "rules_python", version = "1.6.1")
bazel_dep(name = "rules_python", version = "1.6.3")

# C++ toolchain
bazel_dep(name = "toolchains_llvm", version = "1.5.0")
Expand All @@ -41,11 +41,11 @@ use_repo(llvm, "llvm_toolchain")

register_toolchains("@llvm_toolchain//:all")

bazel_dep(name = "rules_cc", version = "0.2.4")
bazel_dep(name = "rules_foreign_cc", version = "0.15.0")
bazel_dep(name = "rules_cc", version = "0.2.13")
bazel_dep(name = "rules_foreign_cc", version = "0.15.1")

# Google API bindings
bazel_dep(name = "googleapis", version = "0.0.0-20250826-a92cee39", repo_name = "com_google_googleapis")
bazel_dep(name = "googleapis", version = "0.0.0-20251003-2193a2bf", repo_name = "com_google_googleapis")

switched_rules = use_extension("@com_google_googleapis//:extensions.bzl", "switched_rules")
switched_rules.use_languages(
Expand All @@ -69,7 +69,7 @@ use_repo(
##########
# Go
##########
bazel_dep(name = "gazelle", version = "0.45.0", repo_name = "bazel_gazelle")
bazel_dep(name = "gazelle", version = "0.46.0", repo_name = "bazel_gazelle")

go_deps = use_extension("@bazel_gazelle//:extensions.bzl", "go_deps")
use_repo(
Expand Down Expand Up @@ -110,11 +110,18 @@ pip.parse(
)
use_repo(pip, "random_number_pip_deps")

pip.parse(
hub_name = "platform_http_server_pip_deps",
python_version = "3.11",
requirements_lock = "//services/platform_http_server:requirements.txt",
)
use_repo(pip, "platform_http_server_pip_deps")

##########
# Containers
##########

bazel_dep(name = "container_structure_test", version = "1.19.1")
bazel_dep(name = "container_structure_test", version = "1.21.1")

##########
# Non-bzlmod dependencies
Expand Down
Loading
Loading