Skip to content

Commit

Permalink
Github actions fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
pjotrp committed Aug 15, 2023
1 parent 3a9205f commit ea71c72
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: CI
on: [push, pull_request]

env:
LDC_VERSION: 1.30.0
LDC_VERSION: 1.32.0

jobs:
build:
name: Build x86_64
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -25,23 +25,23 @@ jobs:
- name: Build & test
run: make -j2 check

- name: Create artifact
run: |
VERSION=$(cat VERSION)
mkdir artifact
gzip --stdout bin/sambamba-${VERSION} > artifact/sambamba-${VERSION}-linux-amd64-static.gz
- name: Upload artifact
uses: actions/upload-artifact@v1
with:
name: sambamba-binary-archives
path: artifact


build-aarch64:
name: Build aarch64
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout
Expand Down Expand Up @@ -71,9 +71,9 @@ jobs:
file bin/sambamba-${VERSION}
mkdir artifact
gzip --stdout bin/sambamba-${VERSION} > artifact/sambamba-${VERSION}-linux-arm64-static.gz
- name: Upload artifact
uses: actions/upload-artifact@v1
with:
name: sambamba-binary-archives
path: artifact
path: artifact

0 comments on commit ea71c72

Please sign in to comment.