Skip to content

Commit

Permalink
try to force run
Browse files Browse the repository at this point in the history
  • Loading branch information
bassmang committed Apr 11, 2024
1 parent fdbc388 commit 35f0d8d
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions .pipelines/build-linux.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
trigger:
- master
- releases/**
branches:
include:
- master
- releases/**

pr:
- master
- releases/**
autoCancel: true
branches:
include:
- master
- releases/**

pool:
vmImage: 'ubuntu-latest'
Expand All @@ -23,10 +28,17 @@ strategy:

steps:
- bash: ./.scripts/linux/build.sh $(BUILD_CONFIGURATION)
displayName: Build C++
displayName: 'Build C++'
condition: succeeded()

- bash: ./.scripts/linux/test.sh
displayName: Test C++
displayName: 'Test C++'
condition: succeeded()

- bash: ./.scripts/linux/test-flatbuffers.sh
displayName: RunTest flatbuffers C++
displayName: 'Run Test Flatbuffers C++'
condition: succeeded()

- bash: ./.scripts/linux/java.sh
displayName: Build + test Java
displayName: 'Build + Test Java'
condition: succeeded()

0 comments on commit 35f0d8d

Please sign in to comment.