gui / stylehelper: general refactoring #6067
Workflow file for this run
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
name: windows-mingw build | |
on: [push, pull_request] | |
jobs: | |
make-exe-64: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Pull the Docker Image | |
run: docker pull cristianbindea/scopy2-mingw64:latest | |
- name: Run Docker Image | |
shell: cmd | |
run: | | |
mkdir %GITHUB_WORKSPACE%\artifacts & echo %GITHUB_WORKSPACE% | |
set "BUILD_HOST=windows-2019" | |
set "USERNAME=github-actions" | |
for /F "tokens=1,2 delims=/" %%a in ("%GITHUB_REPOSITORY%") do ( | |
set "GITHUB_REPO_OWNER=%%a" | |
set "GITHUB_REPO_NAME=%%b" | |
) | |
echo %BUILD_HOST% & echo %USERNAME% & echo %GITHUB_REPO_OWNER% & echo %GITHUB_REPO_NAME% | |
docker run ^ | |
-v %GITHUB_WORKSPACE%:C:\msys64\home\docker\scopy:rw ^ | |
-v %GITHUB_WORKSPACE%\artifacts:C:\msys64\home\docker\artifact_x86_64:rw ^ | |
-e GITHUB_WORKSPACE=%GITHUB_WORKSPACE% ^ | |
-e BUILD_HOST=%BUILD_HOST% ^ | |
-e USERNAME=%USERNAME% ^ | |
-e GITHUB_SERVER_URL=%GITHUB_SERVER_URL% ^ | |
-e GITHUB_API_URL=%GITHUB_API_URL% ^ | |
-e GITHUB_REPOSITORY_OWNER=%GITHUB_REPO_OWNER% ^ | |
-e GITHUB_REPOSITORY=%GITHUB_REPO_NAME% ^ | |
-e GITHUB_RUN_ID=%GITHUB_RUN_ID% ^ | |
-e GITHUB_RUN_NUMBER=%GITHUB_RUN_NUMBER% ^ | |
-e GITHUB_JOB=%GITHUB_JOB% ^ | |
-e GITHUB_RUN_ID=%GITHUB_RUN_ID% ^ | |
-e GITHUB_RUN_NUMBER=%GITHUB_RUN_NUMBER% ^ | |
-e RUNNER_ARCH=%RUNNER_ARCH% ^ | |
-e CI_SCRIPT=ON ^ | |
cristianbindea/scopy2-mingw64:latest C:\msys64\usr\bin\bash.exe -c '/home/docker/scopy/ci/windows/build_and_create_installer.sh run_workflow' | |
- name: Set short git commit SHA | |
shell: bash | |
run: echo "commit_sha=$(git rev-parse --short ${{ github.sha }})" >> "$GITHUB_ENV" | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: scopy-windows-x86_64-${{ env.commit_sha }} | |
path: ${{ github.workspace }}\artifacts\scopy-x86_64.zip | |
compression-level: 0 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: debug-windows-x86_64-${{ env.commit_sha }} | |
path: ${{ github.workspace }}\artifacts\debug-x86_64.zip | |
compression-level: 0 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: scopy-windows-x86_64-setup-${{ env.commit_sha }} | |
path: ${{ github.workspace }}\artifacts\scopy-64-setup.zip | |
compression-level: 0 | |
# Debug session | |
# - name: Start SSH session | |
# uses: luchihoratiu/debug-via-ssh@main | |
# with: | |
# NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }} | |
# SSH_PASS: ${{ secrets.SSH_PASS }} | |
# NGROK_REGION: 'eu' | |
- name: Upload master executable to continous prerelease | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
run: | | |
export SHORT_SHA=${{ github.sha }} | |
export DEPLOY_FILE=Scopy-64-setup-${SHORT_SHA::7}.exe | |
export ARTIFACT_ARCHIVE=Scopy-64-setup.zip | |
cp "${{ github.workspace }}\artifacts\scopy-64-setup.exe" $DEPLOY_FILE | |
tar.exe -a -c -f $ARTIFACT_ARCHIVE $DEPLOY_FILE | |
choco install wget | |
wget https://github.com/tcnksm/ghr/releases/download/v0.14.0/ghr_v0.14.0_windows_amd64.zip | |
unzip ghr_v0.14.0_windows_amd64.zip | |
"ghr_v0.14.0_windows_amd64\ghr.exe" -u ${{ github.repository_owner }} -r scopy -name "Continuous build" -b "Latest succesful master build " -prerelease -debug -replace continous $ARTIFACT_ARCHIVE | |
shell: bash | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# make-exe-32: | |
# runs-on: windows-latest | |
# | |
# steps: | |
## - uses: actions/checkout@v2 | |
# - name: Pull the Docker Image | |
# run: docker pull analogdevices/scopy-build:mingw32 | |
# | |
# - name: Run Docker Image | |
# shell: cmd | |
# run: | | |
# mkdir %GITHUB_WORKSPACE%\artifacts & echo %GITHUB_WORKSPACE% & #docker run -v %cd%:C:\msys64\home\docker\scopy:rw -v #%GITHUB_WORKSPACE%\artifacts:C:\msys64\home\docker\artifact_i686:rw #-e GITHUB_WORKSPACE=%GITHUB_WORKSPACE% analogdevices/#scopy-build:mingw32 C:\msys64\usr\bin\bash.exe -c '/home/docker/#scopy/CI/appveyor/inside_mingw_docker.sh' | |
# - uses: actions/upload-artifact@v2 | |
# with: | |
# name: scopy-i686.zip | |
# path: ${{ github.workspace }}\artifacts\scopy-i686.zip | |
# | |
# - uses: actions/upload-artifact@v2 | |
# with: | |
# name: debug-i686.zip | |
# path: ${{ github.workspace }}\artifacts\debug-i686.zip | |
# - uses: actions/upload-artifact@v2 | |
# with: | |
# name: scopy-i686-setup.exe | |
# path: ${{ github.workspace }}\artifacts\scopy-32-setup.exe |