Skip to content

Commit

Permalink
working finally
Browse files Browse the repository at this point in the history
  • Loading branch information
xansec committed Sep 10, 2024
1 parent 13e11f0 commit 5f2d849
Show file tree
Hide file tree
Showing 5 changed files with 2,422 additions and 11 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@ jobs:
MAYHEM_URL: ${{ env.MAYHEM_URL }}
MAYHEM_TOKEN: ${{ secrets.MAYHEM_TOKEN }}

- name: Output batch file content
if: always()
run: type bazel-out\x64_windows-fastbuild\bin\mayhem\run_calculator_package-wait.bat
shell: cmd

# - name: Install LLVM
# run: |
# scripts\install_llvm.bat
Expand Down
8 changes: 5 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
bazel_dep(name = "googletest", version = "1.15.2")
bazel_dep(name = "rules_pkg", version = "1.0.1")
bazel_dep(name = "rules_fuzzing", version = "0.5.2")

# bazel_dep(name = "rules_mayhem", version = "0.7.2")
# rules_mayhem_dependencies = use_extension("@rules_mayhem//mayhem:extensions.bzl", "rules_mayhem_dependencies")
# use_repo(rules_mayhem_dependencies, "mayhem_cli_linux", "mayhem_cli_windows", "yq_cli_linux", "yq_cli_windows")
# # to-do: fuzztest - see https://github.com/google/fuzztest/issues/950
bazel_dep(name = "rules_oci", version = "1.8.0")

oci = use_extension("@rules_oci//oci:extensions.bzl", "oci")

# Declare external images you need to pull, for example:
# Declare external images you need to pull, for example:
oci.pull(
name = "ubuntu",
tag = "latest",
image = "index.docker.io/library/ubuntu",
platforms = ["linux/amd64"],
tag = "latest",
)

# For each oci.pull call, repeat the "name" here to expose them as dependencies.
use_repo(oci, "ubuntu")
use_repo(oci, "ubuntu")
Loading

0 comments on commit 5f2d849

Please sign in to comment.