Skip to content

Commit 765419b

Browse files
automate page review
1 parent d863f82 commit 765419b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

content/learning-paths/laptops-and-desktops/gh-arm-runners-win/automate-win-app.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ In this section, you will learn how to automate the build process of a Windows a
1010

1111
### Overview of the Windows Application
1212

13-
A basic overview of the application is provided here but for details on building the application refer to the [Optimize Windows applications using Arm Performance Libraries Learning Path](/learning-paths/laptops-and-desktops/windows_armpl/2-multithreading/).
13+
This section provides a basic overview of the application. For detailed build instructions, see the [Optimize Windows applications using Arm Performance Libraries Learning Path](/learning-paths/laptops-and-desktops/windows_armpl/2-multithreading/).
1414

15-
The source code for the application that renders a rotating 3D cube to perform the calculations using different programming options is provided in this GitHub repository.
15+
The source code for the rotating 3D cube application, which demonstrates multiple programming approaches to performing rotation calculations, is available in this GitHub repository.
1616

1717
```console
1818
https://github.com/arm/SpinTheCubeInGDI
@@ -26,8 +26,8 @@ The application implements a spinning cube and consists of four key components:
2626

2727
The code has two options to calculate the rotation:
2828

29-
1. Multithreading: the application uses multithreading to improve performance by distributing the rotation calculations across multiple threads.
30-
2. Arm Performance Libraries: the application uses optimized math library functions for the rotation calculations.
29+
1. **Multithreading**: distributes rotation calculations across multiple threads to improve performance.
30+
2. **Arm Performance Libraries**: uses Arm-optimized math functions to accelerate rotation calculations.
3131

3232
You will learn how to automate the build process for this application by using GitHub Actions with Arm-hosted Windows runners.
3333

@@ -65,17 +65,17 @@ jobs:
6565

6666
**Upload Build Artifact**: Uploads the built executable as an artifact using `actions/upload-artifact@v4`.
6767

68-
This workflow automates the process of dependency management, environment setup, building the project, and storing the final artifact all using a GitHub Arm-hosted Windows runner.
68+
This workflow automates dependency management, environment setup, project compilation, and artifact storage - all using a GitHub Arm-hosted Windows runner.
6969

70-
### Fork the repository and run the workflow
70+
### Fork the Repository and Run the Workflow
7171

72-
To run the workflow, you can fork the repository and run the workflow in your GitHub account.
72+
To run the workflow in your own GitHub account, start by forking the repository.
7373

74-
To fork the repository, go to the repository page on GitHub and click the `Fork` button in the top right corner. This will create a copy of the repository under your own GitHub account.
74+
To fork the repository, go to the repository page on GitHub and click the **Fork** button in the top right corner. This will create a copy of the repository under your own GitHub account.
7575

76-
You can then run the workflow in your forked repository by navigating to the `Actions` tab and selecting the MSBuild workflow, then clicking `Run workflow`.
76+
You can then run the workflow in your forked repository by navigating to the **Actions** tab and selecting the MSBuild workflow, then clicking **Run workflow**.
7777

78-
You can view the `Actions` logs in the repository for each step.
78+
You can view the **Actions** logs in the repository for each step.
7979
![action #center](_images/actions.png)
8080

8181
You have learned how to build a Windows application and upload the result as an artifact of your workflow using the GitHub Arm-hosted Windows runner.

0 commit comments

Comments
 (0)