File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3636 echo "sha: ${{ env.SHA }}"
3737 echo "tag: ${{ env.TAG }}"
3838
39- build-binaries-x86 :
39+ build-binaries-x64 :
4040 runs-on : ubuntu-latest
4141 # Use a container with GLIBC 2.17
4242 container : quay.io/pypa/manylinux2014_x86_64
5757
5858 - uses : Swatinem/rust-cache@v1
5959 with :
60- key : x86
60+ key : x64
6161
6262 - name : Compile
6363 uses : actions-rs/cargo@v1
@@ -71,14 +71,14 @@ jobs:
7171 - name : Prepare archive
7272 id : archive
7373 run : |
74- export ARCHIVE_NAME=hq-${{ needs.set-env.outputs.tag }}-linux-x86 .tar.gz
74+ export ARCHIVE_NAME=hq-${{ needs.set-env.outputs.tag }}-linux-x64 .tar.gz
7575 tar -czvf $ARCHIVE_NAME -C target/release hq
7676 echo "::set-output name=archive-name::$ARCHIVE_NAME"
7777
7878 - name : Store archive
7979 uses : actions/upload-artifact@v2
8080 with :
81- name : archive-x86
81+ name : archive-x64
8282 path : ${{ steps.archive.outputs.archive-name }}
8383
8484 build-binaries-powerpc :
@@ -121,7 +121,7 @@ jobs:
121121 path : ${{ steps.archive.outputs.archive-name }}
122122 create-release :
123123 runs-on : ubuntu-latest
124- needs : [ set-env, build-binaries-x86 , build-binaries-powerpc ]
124+ needs : [ set-env, build-binaries-x64 , build-binaries-powerpc ]
125125 outputs :
126126 upload_url : ${{ steps.create-release.outputs.upload_url }}
127127 steps :
@@ -150,7 +150,7 @@ jobs:
150150 needs : [set-env, create-release]
151151 strategy :
152152 matrix :
153- arch : [x86 , powerpc64]
153+ arch : [x64 , powerpc64]
154154 steps :
155155 - name : Download archive
156156 uses : actions/download-artifact@v2
You can’t perform that action at this time.
0 commit comments