Skip to content

Commit

Permalink
IMPR: Github Action. upload prebuild libs to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ser-mk committed Sep 1, 2023
1 parent f0995fb commit 9682c83
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,17 @@ jobs:
echo "\n\n\n ==== SYSTEM_VERSION_COMPAT $SYSTEM_VERSION_COMPAT \nn\n\n\n\n"
cmake --build ${{github.workspace}}/build
- name: Commit
run: |
git clone https://ser-mk:${{ secrets.TOKEN_PUSH }}@github.com/remotemcu/prebuilt_libraries.git
git config --global user.email "[email protected]"
git config --global user.name "Evgeny Chormonov"
cp -rf build/output/* prebuilt_libraries/
cd prebuilt_libraries/
git add .
git status
git commit -m "update macos" || true
# git push origin master
- name: push/upload
run: git push origin master
14 changes: 14 additions & 0 deletions .github/workflows/raspberry_pi_armv6_bcm2708.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,17 @@ jobs:
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build

- name: Commit
run: |
git clone https://ser-mk:${{ secrets.TOKEN_PUSH }}@github.com/remotemcu/prebuilt_libraries.git
git config --global user.email "[email protected]"
git config --global user.name "Evgeny Chormonov"
cp -rf build/output/* prebuilt_libraries/
cd prebuilt_libraries/
git add .
git status
git commit -m "update raspberry" || true
# git push origin master
- name: push/upload
run: git push origin master
15 changes: 15 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,19 @@ jobs:
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build

- name: Commit
run: |
git clone https://ser-mk:${{ secrets.TOKEN_PUSH }}@github.com/remotemcu/prebuilt_libraries.git
git config --global user.email "[email protected]"
git config --global user.name "Evgeny Chormonov"
cp -rf build/output/* prebuilt_libraries/
cd prebuilt_libraries/
git add .
git status
git commit -m "update linux" || true
# git push origin master
- name: push/upload
run: git push origin master

14 changes: 14 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,17 @@ jobs:
cmake --build "D:\build"

- name: Commit
run: |
git clone https://ser-mk:${{ secrets.TOKEN_PUSH }}@github.com/remotemcu/prebuilt_libraries.git
git config --global user.email "[email protected]"
git config --global user.name "Evgeny Chormonov"
cp -rf /d/build/output/* prebuilt_libraries/
cd prebuilt_libraries/
git add .
git status
git commit -m "update windows" || true
# git push origin master
- name: push/upload
run: git push origin master

0 comments on commit 9682c83

Please sign in to comment.