Skip to content

Commit

Permalink
Is this it?
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMcFelix committed Jul 19, 2024
1 parent fedb88a commit bf655d7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/buildomat/jobs/p5p.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
#:
#: [dependencies.xde]
#: job = "opte-xde"
#;
#: [dependencies.opteadm]
#: job = "opteadm"

set -o errexit
set -o pipefail
Expand All @@ -48,9 +51,11 @@ header "move artifacts for packaging"
# Copy in just-built artifacts
DBG_SRC=target/x86_64-illumos/debug
DBG_LINK_SRC=target/i686-unknown-illumos/debug
DBG_ADM_SRC=target/debug

REL_SRC=target/x86_64-illumos/release
REL_LINK_SRC=target/i686-unknown-illumos/release
REL_ADM_SRC=target/release

mkdir -p $REL_SRC
cp /input/xde/work/release/xde $REL_SRC
Expand All @@ -62,6 +67,11 @@ cp /input/xde/work/release/xde_link.so $REL_LINK_SRC/libxde_link.so
mkdir -p $DBG_LINK_SRC
cp /input/xde/work/debug/xde_link.dbg.so $DBG_LINK_SRC/libxde_link.so

mkdir -p $REL_ADM_SRC
cp /input/opteadm/work/release/opteadm $REL_ADM_SRC/xde
mkdir -p $DBG_ADM_SRC
cp /input/opteadm/work/debug/opteadm $DBG_ADM_SRC/xde

header "package opte"
cargo xtask package --skip-build

Expand Down

0 comments on commit bf655d7

Please sign in to comment.