Skip to content

Commit

Permalink
FIX temporal disable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fgalan committed Jan 15, 2025
1 parent 201dadc commit 06cc0a7
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 33 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
#
name: "CodeQL Advanced"

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: '33 5 * * 1'
# on:
# push:
# branches: [ "master" ]
# pull_request:
# branches: [ "master" ]
# schedule:
# - cron: '33 5 * * 1'

jobs:
analyze:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/compliance.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Compliance Tests

on:
push:
branches:
- master
pull_request:
branches:
- master
- '!checkvalgrind**'
#on:
# push:
# branches:
# - master
# pull_request:
# branches:
# - master
# - '!checkvalgrind**'

jobs:
compliance:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/example.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: MQTT Broker Example

on: [push]
#on: [push]

jobs:
mqtt:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/example2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:

- name: Run Mosquitto container
#run: docker run -d --name mosquitto -p 1883:1883 -v ${{ github.workspace }}/test/functionalTest/mosquitto_for_tests.conf:/mosquitto/config/mosquitto.conf -v ${{ github.workspace }}/test/functionalTest/mosquitto_passwd:/mosquitto/config/mosquitto_passwd eclipse-mosquitto
run: docker run -d --name mosquitto -p 1883:1883 -v ${{ github.workspace }}/mosquitto.conf:/mosquitto/config/mosquitto.conf eclipse-mosquitto
#run: docker run -d --name mosquitto -p 1883:1883 -v ${{ github.workspace }}/mosquitto.conf:/mosquitto/config/mosquitto.conf eclipse-mosquitto
run: docker run -d --name mosquitto -p 1883:1883 eclipse-mosquitto

- name: Publish messages
run: |
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/functional.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Functional Tests

on:
push:
branches:
- master
pull_request:
branches:
- master
- '!checkvalgrind**'
#on:
# push:
# branches:
# - master
# pull_request:
# branches:
# - master
# - '!checkvalgrind**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Unit Tests

on:
push:
branches:
- master
pull_request:
branches:
- master
- '!checkvalgrind**'
#on:
# push:
# branches:
# - master
# pull_request:
# branches:
# - master
# - '!checkvalgrind**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down

0 comments on commit 06cc0a7

Please sign in to comment.