28 lines
546 B
YAML
28 lines
546 B
YAML
name: Build XMRig Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
xmrig-linux-static-x64-test:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: alpine:latest
|
|
|
|
steps:
|
|
- name: Patch Alpine container into actions runner environment
|
|
run: |
|
|
apk add nodejs
|
|
shell: sh # No bash in Alpine by default
|
|
|
|
- run: |
|
|
touch testfile
|
|
|
|
- name: Archive artifacts
|
|
uses: christopherhx/gitea-upload-artifact@v4
|
|
with:
|
|
name: xmrig-linux-static-x64
|
|
path: testfile
|