-
-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
34 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,38 +24,38 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Adjust config templates for a devcontainer | ||
run: | | ||
# Move into the config directory | ||
pushd config | ||
# Rename the templates | ||
mv user-prefs.TEMPLATE.json user-prefs.json | ||
mv user-tools-repos.TEMPLATE.json user-tools-repos.json | ||
# Adjust the file content for a devcontainer | ||
sed -i -- 's|"name": "user-tools-repos-container"|"name": "user-tools-repos"|g' user-tools-repos.json | ||
|
||
# Move out of the config directory | ||
popd | ||
|
||
- name: Adjust devcontainer.json for ${{ matrix.rtos }} source | ||
run: | | ||
# Move into the .devcontainer directory | ||
pushd .devcontainer | ||
# Target the dockerfile source. | ||
# sed -i -- 's|"dockerFile": "Dockerfile.All"|"dockerFile": "sources/Dockerfile.'${{ matrix.rtos }}'"|g' devcontainer.json | ||
# Move out of the .devcontainer directory | ||
popd | ||
- name: Build ${{ matrix.target }} ${{ matrix.build-type }} Firmware | ||
uses: devcontainers/[email protected] | ||
with: | ||
push: never | ||
runCmd: | | ||
# Build target: | ||
cmake --preset=${{ matrix.target }} -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} | ||
cmake --build build | ||
# - name: Adjust config templates for a devcontainer | ||
# run: | | ||
# # Move into the config directory | ||
# pushd config | ||
# # Rename the templates | ||
# mv user-prefs.TEMPLATE.json user-prefs.json | ||
# mv user-tools-repos.TEMPLATE.json user-tools-repos.json | ||
# # Adjust the file content for a devcontainer | ||
# sed -i -- 's|"name": "user-tools-repos-container"|"name": "user-tools-repos"|g' user-tools-repos.json | ||
|
||
# # Move out of the config directory | ||
# popd | ||
|
||
# - name: Adjust devcontainer.json for ${{ matrix.rtos }} source | ||
# run: | | ||
# # Move into the .devcontainer directory | ||
# pushd .devcontainer | ||
|
||
# # Target the dockerfile source. | ||
# # sed -i -- 's|"dockerFile": "Dockerfile.All"|"dockerFile": "sources/Dockerfile.'${{ matrix.rtos }}'"|g' devcontainer.json | ||
|
||
# # Move out of the .devcontainer directory | ||
# popd | ||
|
||
# - name: Build ${{ matrix.target }} ${{ matrix.build-type }} Firmware | ||
# uses: devcontainers/[email protected] | ||
# with: | ||
# push: never | ||
# runCmd: | | ||
# # Build target: | ||
# cmake --preset=${{ matrix.target }} -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} | ||
# cmake --build build | ||
|