Skip to content

Commit

Permalink
attempt other platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
grencez committed Nov 20, 2023
1 parent 31a2962 commit ed1c10e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
---
name: Bazel
on: [push, pull_request]

jobs:
test:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest]
platform: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.platform }}

steps:
- name: Setup bazel
uses: jwlawson/actions-setup-bazel@v1
with:
bazel-version: '5'
bazel-version: '6'

- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -43,7 +45,7 @@ jobs:
- name: Setup bazel
uses: jwlawson/actions-setup-bazel@v1
with:
bazel-version: '5'
bazel-version: '6'

- name: Checkout
uses: actions/checkout@v4
Expand Down
15 changes: 15 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
load("@rules_license//rules:license.bzl", "license")

package(
default_applicable_licenses = [":license"],
default_visibility = ["//visibility:public"],
)
license(
name = "license",
license_kinds = ["@rules_license//licenses/spdx:ISC"],
license_text = "LICENSE",
)
exports_files([
"LICENSE",
"MODULE.bazel",
])
1 change: 1 addition & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ module(

bazel_dep(name = "bazel_skylib", version = "1.5.0")
bazel_dep(name = "fildesh", version = "0.1.9")
bazel_dep(name = "rules_license", version = "0.0.7")
bazel_dep(name = "mdd-glu", version = "2.4.0")
bazel_dep(name = "rules_peg", version = "0.1.18")

0 comments on commit ed1c10e

Please sign in to comment.