Skip to content

Commit

Permalink
[oss] github actions attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
vmagro committed Mar 25, 2024
1 parent c7ea514 commit 0076143
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .buckconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ buck = none
target_platform_detector_spec = target:antlir//...->prelude//platforms:default

[project]
ignore = .git
ignore = .git antlir2-out

[test]
excluded_labels = buck-exclude-test disabled
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: CI
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: facebook/install-dotslash@latest
- name: Test
run: |
./buck2 test --always-exclude --exclude disabled //...
7 changes: 3 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
antlir2-out
buck-out
antlir2-out/
buck-out/
.buckd/

**/*.swp
.vscode/
*.local

__pycache__/
.sl
67 changes: 67 additions & 0 deletions buck2
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
#!/usr/bin/env dotslash

{
"name": "buck2",
"platforms": {
"macos-aarch64": {
"size": 22881615,
"hash": "blake3",
"digest": "017266c212d7f757233d7edaa0e8b62e4f02245f2494b506ec9f820dcbc6dc29",
"format": "zst",
"path": "buck2-aarch64-apple-darwin",
"providers": [
{
"url": "https://github.com/facebook/buck2/releases/download/2024-03-15/buck2-aarch64-apple-darwin.zst"
}
]
},
"linux-aarch64": {
"size": 25301648,
"hash": "blake3",
"digest": "819d68f55cbc4daf5e0e7af02cbfc3a24e490c07b09901e1948f501637202b86",
"format": "zst",
"path": "buck2-aarch64-unknown-linux-musl",
"providers": [
{
"url": "https://github.com/facebook/buck2/releases/download/2024-03-15/buck2-aarch64-unknown-linux-musl.zst"
}
]
},
"macos-x86_64": {
"size": 24600865,
"hash": "blake3",
"digest": "77bd38820f276349ad8e4ab6e398c5a832214e7e0e82c3b91053d455cffb4267",
"format": "zst",
"path": "buck2-x86_64-apple-darwin",
"providers": [
{
"url": "https://github.com/facebook/buck2/releases/download/2024-03-15/buck2-x86_64-apple-darwin.zst"
}
]
},
"windows-x86_64": {
"size": 20222556,
"hash": "blake3",
"digest": "4f02b8d1208f55c8573e2bbf3caf2f854b23425ac9d2e13ada7ff05792c5b29e",
"format": "zst",
"path": "buck2-x86_64-pc-windows-msvc.exe",
"providers": [
{
"url": "https://github.com/facebook/buck2/releases/download/2024-03-15/buck2-x86_64-pc-windows-msvc.exe.zst"
}
]
},
"linux-x86_64": {
"size": 25948289,
"hash": "blake3",
"digest": "1d836d35de0d29bd6b3d918f33962b670f46091c4959f7f113e112cf5aab45a1",
"format": "zst",
"path": "buck2-x86_64-unknown-linux-musl",
"providers": [
{
"url": "https://github.com/facebook/buck2/releases/download/2024-03-15/buck2-x86_64-unknown-linux-musl.zst"
}
]
}
}
}

0 comments on commit 0076143

Please sign in to comment.