Build Rust Dist Container #9
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 Rust Dist Container | |
permissions: | |
contents: read | |
on: | |
workflow_dispatch: | |
branches: | |
- dev-18 | |
paths: | |
- .github/workflows/build-rust-dist-docker.yml | |
- 'docker/**' | |
jobs: | |
build-rust-dist-container: | |
if: github.repository_owner == 'seahorn' | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- name: Write Variables | |
id: vars | |
run: | | |
tag=`date +%s` | |
container_name="ghcr.io/$GITHUB_REPOSITORY_OWNER/seaurchin-llvm/buildpack-deps-seaurchin" | |
echo "container-name=buildpack-deps-seaurchin" >> $GITHUB_OUTPUT | |
echo "container-name-tag=$container_name:latest" >> $GITHUB_OUTPUT | |
- name: Download seaurchin-llvm | |
uses: dawidd6/action-download-artifact@v7 | |
with: | |
#name: seaurchin-llvm-build | |
repo: seahorn/seaurchin-llvm | |
workflow-name: build-seaurchin-llvm-assert-bin.yml | |
branch: dev-18 | |
github-token: ${{ secrets.seaurchin-llvm-read }} | |
- name: Checkout seaurchin | |
uses: actions/checkout@v4 | |
- name: Display structure of downloaded seaurchin-llvm artefact | |
run: ls -laH |