@@ -24,38 +24,38 @@ jobs:
24
24
steps:
25
25
- uses: actions/checkout@v4
26
26
27
- - name: Adjust config templates for a devcontainer
28
- run: |
29
- # Move into the config directory
30
- pushd config
31
-
32
- # Rename the templates
33
- mv user-prefs.TEMPLATE.json user-prefs.json
34
- mv user-tools-repos.TEMPLATE.json user-tools-repos.json
35
-
36
- # Adjust the file content for a devcontainer
37
- sed -i -- ' s|"name": "user-tools-repos-container"|"name": "user-tools-repos"|g' user-tools-repos.json
38
-
39
- # Move out of the config directory
40
- popd
41
-
42
- - name : Adjust devcontainer.json for ${{ matrix.rtos }} source
43
- run : |
44
- # Move into the .devcontainer directory
45
- pushd .devcontainer
46
-
47
- # Target the dockerfile source.
48
- # sed -i -- 's|"dockerFile": "Dockerfile.All"|"dockerFile": "sources/Dockerfile.'${{ matrix.rtos }}'"|g' devcontainer.json
49
-
50
- # Move out of the .devcontainer directory
51
- popd
52
-
53
- - name : Build ${{ matrix.target }} ${{ matrix.build-type }} Firmware
54
- uses :
devcontainers/[email protected]
55
- with :
56
- push : never
57
- runCmd : |
58
- # Build target:
59
- cmake --preset=${{ matrix.target }} -DCMAKE_BUILD_TYPE=${{ matrix.build-type }}
60
- cmake --build build
27
+ # - name: Adjust config templates for a devcontainer
28
+ # run: |
29
+ # # Move into the config directory
30
+ # pushd config
31
+
32
+ # # Rename the templates
33
+ # mv user-prefs.TEMPLATE.json user-prefs.json
34
+ # mv user-tools-repos.TEMPLATE.json user-tools-repos.json
35
+
36
+ # # Adjust the file content for a devcontainer
37
+ # sed -i -- ' s|"name": "user-tools-repos-container"|"name": "user-tools-repos"|g' user-tools-repos.json
38
+
39
+ # # Move out of the config directory
40
+ # popd
41
+
42
+ # - name: Adjust devcontainer.json for ${{ matrix.rtos }} source
43
+ # run: |
44
+ # # Move into the .devcontainer directory
45
+ # pushd .devcontainer
46
+
47
+ # # Target the dockerfile source.
48
+ # # sed -i -- 's|"dockerFile": "Dockerfile.All"|"dockerFile": "sources/Dockerfile.'${{ matrix.rtos }}'"|g' devcontainer.json
49
+
50
+ # # Move out of the .devcontainer directory
51
+ # popd
52
+
53
+ # - name: Build ${{ matrix.target }} ${{ matrix.build-type }} Firmware
54
+ # uses: devcontainers/[email protected]
55
+ # with:
56
+ # push: never
57
+ # runCmd: |
58
+ # # Build target:
59
+ # cmake --preset=${{ matrix.target }} -DCMAKE_BUILD_TYPE=${{ matrix.build-type }}
60
+ # cmake --build build
61
61
0 commit comments