Set fixed container versions

To avoid redownloading every second time the pipeline runs
This commit is contained in:
Paul Brinkmeier 2022-09-13 18:01:00 +02:00
parent c032a92fa4
commit 711af6bdf2
2 changed files with 4 additions and 4 deletions

View File

@ -5,16 +5,16 @@ name: default
steps:
- name: hello world
image: alpine
image: alpine:3.16.2
commands:
- echo hello
- echo world
- name: python
image: python
image: python:3.11-rc-alpine
commands:
- python3 -c "print(6 * 7)"
- name: algo2
image: gcc
image: gcc:12.2.0
commands:
- cd algo2
- gcc -o pairingheap pairingheap.c

View File

@ -166,7 +166,7 @@ int main() {
struct PHeap ph;
ph_init(&ph);
for (int i = 0; i < 20; i++) {
for (int i = 0; i < 15; i++) {
ph_insert_malloc(&ph, rand() % 100);
}