We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80c3f63 commit ffba283Copy full SHA for ffba283
.github/workflows/just-works.yml
@@ -0,0 +1,22 @@
1
+name: Just Works
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - release/*
8
+ pull_request:
9
+ workflow_dispatch:
10
11
+concurrency:
12
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' }}-${{ github.event_name == 'schedule' }}
13
+ cancel-in-progress: true
14
15
+jobs:
16
+ # Equivalent: pip install executorch
17
+ linux-build:
18
+ uses: .github/workflows/build-wheels-linux.yml
19
20
21
+ macos-build:
22
+ uses: .github/workflows/build-wheels-m1.yml
0 commit comments