Skip to content

Commit

Permalink
feat: rust dist builder workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
priyasiddharth committed Dec 5, 2024
1 parent 73f5040 commit af43ef9
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/build-rust-dist-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@

name: Build builddeps Container

permissions:
contents: read

on:
workflow_dispatch:
branches:
- dev-18
paths:
- .github/workflows/build-ci-container.yml
- 'docker/**'

jobs:
build-ci-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: actions/download-artifact@v4
with:
name: seaurchin-llvm-build
repository: seahorn/seaurchin-llvm
github-token: ${{ secrets.seaurchin-llvm-read }}

- name: Checkout seaurchin
uses: actions/checkout@v4

- name: Display structure of downloaded seaurchin-llvm artefact
run: ls -laH

0 comments on commit af43ef9

Please sign in to comment.