-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (36 loc) · 1.01 KB
/
devContainer.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: devContainer
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
name: Run devcontainer test
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Check out code
uses: actions/checkout@v3
with:
submodules: recursive
- name: "Create environment files"
run: .devcontainer/prepare-env.sh
- name: run tests software
uses: devcontainers/ci@v0.3
with:
configFile: .devcontainer/raspberry/devcontainer.json
env: .devcontainer/raspberry/.env
runCmd: |
docker ps
software/build.sh
- name: run tests stm32
uses: devcontainers/ci@v0.3
with:
configFile: .devcontainer/stm32/devcontainer.json
env: .devcontainer/stm32/.env
runCmd: make