Refine Github action artifacts #203
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: Build the Linux Assembly | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
compile_job: | |
name: build_linux_assembly | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/lasp/adamant_example:latest | |
options: --user root | |
steps: | |
- run: echo "Starting job triggered by a ${{ github.event_name }} event on a ${{ runner.os }} server hosted by GitHub." | |
- run: echo "Checking out ${{ github.repository }} on branch ${{ github.ref }}." | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
set-safe-directory: true | |
path: adamant_example | |
- name: Clone adamant repository | |
uses: actions/checkout@v4 | |
with: | |
set-safe-directory: true | |
repository: lasp/adamant | |
path: adamant | |
- name: Build the Linux binary | |
run: bash adamant_example/env/github_run.sh "redo adamant_example/src/assembly/linux/main/build/bin/Linux/main.elf" | |
- name: Archive Linux binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linux_elf | |
path: ${{ github.workspace }}/adamant_example/src/assembly/linux/main/build/bin/Linux/main.elf | |
if-no-files-found: error | |
- run: echo "Finished with status - ${{ job.status }}." |