https://github.com/maxdevos49/x86_64-elf-toolchain
Github Action for building a project using the x86_64-elf toolchain
https://github.com/maxdevos49/x86_64-elf-toolchain
Last synced: 5 months ago
JSON representation
Github Action for building a project using the x86_64-elf toolchain
- Host: GitHub
- URL: https://github.com/maxdevos49/x86_64-elf-toolchain
- Owner: maxdevos49
- License: mit
- Created: 2024-09-16T03:58:08.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T19:45:34.000Z (almost 2 years ago)
- Last Synced: 2024-09-17T06:43:06.284Z (almost 2 years ago)
- Language: Dockerfile
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# x86_64-elf-toolchain Action
[](https://github.com/super-linter/super-linter)


## Usage
Action assumes `make all` is the command to build the project.
To include the action in a workflow in another repository, you can use the
`uses` syntax with the `@` symbol to reference a specific branch, tag, or commit
hash.
```yaml
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v3
- name: Build
id: build
uses: maxdevos49/x86_64-elf-toolchain@latest
```
## Release instructions
1. Create a new branch
```bash
git checkout -b releases/v1
```
1. Build and test the container
```bash
docker build -t maxdevos49/x86_64-elf-toolchain .
docker run maxdevos49/x86_64-elf-toolchain
```
2. Commit your changes
3. Push them to your repository
```bash
git push -u origin releases/v1
```
4. Create a pull request
5. Merge the pull request into the `main` branch