try specialized image #4
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
# This is a basic workflow running on Azure cloud | |
name: GitHub Actions on Azure Cloud | |
on: push | |
jobs: | |
build: | |
runs-on: "cirun-runner-windows-runner-specialized--${{ github.run_id }}" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.0.0 | |
- name: Setup MSYS2 | |
run: | | |
cmd /c curl -OL https://github.com/msys2/msys2-installer/releases/download/2024-01-13/msys2-x86_64-20240113.exe | |
cmd /c .\msys2-x86_64-20240113.exe in --confirm-command --accept-messages --root C:/msys64 | |
- name: Get Hostname | |
run: | | |
hostname | |
- name: pwd and dir | |
run: | | |
pwd | |
dir | |
- name: Number of processors | |
run: echo %NUMBER_OF_PROCESSORS% |