Skip to content

Commit 5342bfb

Browse files
authored
Update examples to 334bc637ffe76144215e0a7cf5ca78e62a70c3fb (#27)
Signed-off-by: Michael Carroll <[email protected]>
1 parent 2d5813c commit 5342bfb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1520
-663
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# Share repository cache between workflows.
3232
repository-cache: true
3333

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

3636

3737
- name: Update SDK to latest

.github/workflows/flowstate-ci.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ on:
1515
description: 'Version of Intrinsic tools to use'
1616
required: false
1717
default: 'latest'
18-
INTRINSIC_VM_DURATION:
19-
description: 'Duration time (hours) for request the VM'
20-
required: false
21-
default: '1'
22-
type: string
2318

2419
jobs:
2520
ci:
@@ -29,7 +24,6 @@ jobs:
2924
INTRINSIC_SOLUTION: ${{ github.event.inputs.INTRINSIC_SOLUTION }}
3025
INTRINSIC_API_KEY: ${{ secrets.INTRINSIC_API_KEY }}
3126
INTRINSIC_TOOL_VERSION: ${{ github.event.inputs.INTRINSIC_TOOL_VERSION }}
32-
INTRINSIC_VM_DURATION: ${{ github.event.inputs.INTRINSIC_VM_DURATION }}
3327
SKILLS_UNDER_TEST: |
3428
//skills/start_stopwatch:start_stopwatch_skill
3529
//skills/stop_stopwatch:stop_stopwatch_py_skill
@@ -59,7 +53,7 @@ jobs:
5953
# Share repository cache between workflows.
6054
repository-cache: true
6155

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

6458
- name: Setup Intrinsic Tools
6559
uses: ./.github/actions/setup-intrinsic-tools
@@ -107,9 +101,10 @@ jobs:
107101
108102
- name: Run CI Bash Script
109103
shell: bash
104+
env:
105+
PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${{ github.workspace }}/bin
110106
run: |
111107
. ./tests/run_ci.sh --skill=${{ steps.prep_targets.outputs.skill_list }} \
112108
--org=${INTRINSIC_ORGANIZATION} \
113109
--solution=${INTRINSIC_SOLUTION} \
114-
--vm-duration="${INTRINSIC_VM_DURATION}" \
115110
--service=${{ steps.prep_targets.outputs.service_list }}\

MODULE.bazel

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ archive_override(
1111
)
1212

1313
# Direct dependencies
14-
bazel_dep(name = "abseil-cpp", version = "20250814.0", repo_name = "com_google_absl")
14+
bazel_dep(name = "abseil-cpp", version = "20250814.1", repo_name = "com_google_absl")
1515
bazel_dep(name = "abseil-py", version = "2.1.0", repo_name = "com_google_absl_py")
16-
bazel_dep(name = "bazel_skylib", version = "1.8.1")
17-
bazel_dep(name = "googletest", version = "1.17.0", repo_name = "com_google_googletest")
16+
bazel_dep(name = "bazel_skylib", version = "1.8.2")
17+
bazel_dep(name = "googletest", version = "1.17.0.bcr.1", repo_name = "com_google_googletest")
1818
bazel_dep(name = "grpc", version = "1.74.1", repo_name = "com_github_grpc_grpc")
1919
bazel_dep(name = "platforms", version = "1.0.0")
20-
bazel_dep(name = "protobuf", version = "32.0", repo_name = "com_google_protobuf")
20+
bazel_dep(name = "protobuf", version = "32.1", repo_name = "com_google_protobuf")
2121
bazel_dep(name = "rules_go", version = "0.57.0", repo_name = "io_bazel_rules_go")
2222
bazel_dep(name = "rules_pkg", version = "1.1.0")
23-
bazel_dep(name = "rules_python", version = "1.6.1")
23+
bazel_dep(name = "rules_python", version = "1.6.3")
2424

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

4242
register_toolchains("@llvm_toolchain//:all")
4343

44-
bazel_dep(name = "rules_cc", version = "0.2.4")
45-
bazel_dep(name = "rules_foreign_cc", version = "0.15.0")
44+
bazel_dep(name = "rules_cc", version = "0.2.13")
45+
bazel_dep(name = "rules_foreign_cc", version = "0.15.1")
4646

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

5050
switched_rules = use_extension("@com_google_googleapis//:extensions.bzl", "switched_rules")
5151
switched_rules.use_languages(
@@ -69,7 +69,7 @@ use_repo(
6969
##########
7070
# Go
7171
##########
72-
bazel_dep(name = "gazelle", version = "0.45.0", repo_name = "bazel_gazelle")
72+
bazel_dep(name = "gazelle", version = "0.46.0", repo_name = "bazel_gazelle")
7373

7474
go_deps = use_extension("@bazel_gazelle//:extensions.bzl", "go_deps")
7575
use_repo(
@@ -110,11 +110,18 @@ pip.parse(
110110
)
111111
use_repo(pip, "random_number_pip_deps")
112112

113+
pip.parse(
114+
hub_name = "platform_http_server_pip_deps",
115+
python_version = "3.11",
116+
requirements_lock = "//services/platform_http_server:requirements.txt",
117+
)
118+
use_repo(pip, "platform_http_server_pip_deps")
119+
113120
##########
114121
# Containers
115122
##########
116123

117-
bazel_dep(name = "container_structure_test", version = "1.19.1")
124+
bazel_dep(name = "container_structure_test", version = "1.21.1")
118125

119126
##########
120127
# Non-bzlmod dependencies

0 commit comments

Comments
 (0)