diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..d2941aae0 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,26 @@ +name: Benchmark +on: [workflow_dispatch] +jobs: + # macOS15AS: + # runs-on: macos-15 + # steps: + # - uses: actions/checkout@v4 + # - run: | + # chmod +x benchmark.sh + # ./benchmark.sh + + # macOS15ASLarge: + # runs-on: macos-15-xlarge + # steps: + # - uses: actions/checkout@v4 + # - run: | + # chmod +x benchmark.sh + # ./benchmark.sh + + macOS15Intel: + runs-on: macos-15-large + steps: + - uses: actions/checkout@v4 + - run: | + chmod +x benchmark.sh + ./benchmark.sh diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..df9993a76 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,16 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: macos-15 + +steps: +- script: | + chmod +x benchmark.sh + ./benchmark.sh + displayName: 'Run a multi-line script'