A SpaceTraders Agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

move to concourse ci

Altagos c55f888e 5c827549

+46 -24
-24
.tangled/workflows/build.yml
··· 1 - when: 2 - - event: ["push", "pull_request"] 3 - branch: ["main", "workflows"] 4 - 5 - engine: nixery 6 - 7 - dependencies: 8 - nixpkgs: 9 - - mise 10 - 11 - steps: 12 - - name: Setup Zig 13 - command: | 14 - mise trust 15 - mise exec zig -- zig version 16 - - name: Run Tests 17 - command: | 18 - mise run test 19 - - name: Build Debug 20 - command: | 21 - mise run build 22 - - name: Build ReleaseFast 23 - command: | 24 - mise run build-release
+23
ci/tasks/build.yml
··· 1 + platform: linux 2 + 3 + image_resource: 4 + type: registry-image 5 + source: 6 + repository: ghcr.io/jdx/mise 7 + tag: latest 8 + 9 + inputs: 10 + - name: space 11 + 12 + caches: 13 + - path: .cache/zig/ 14 + 15 + run: 16 + dir: space 17 + path: sh 18 + args: 19 + - -exc 20 + - | 21 + mise trust > /dev/null 22 + mise install > /dev/null 23 + zig build --release=fast --summary all
+23
ci/tasks/test.yml
··· 1 + platform: linux 2 + 3 + image_resource: 4 + type: registry-image 5 + source: 6 + repository: ghcr.io/jdx/mise 7 + tag: latest 8 + 9 + inputs: 10 + - name: space 11 + 12 + caches: 13 + - path: ~/.cache/zig/ 14 + 15 + run: 16 + dir: space 17 + path: sh 18 + args: 19 + - -exc 20 + - | 21 + mise trust > /dev/null 22 + mise install > /dev/null 23 + zig build test --summary all